Voici les commandes de terminal et Git utilisées dans les défis de Git-it.
mkdir <FOLDERNAME>
cd <FOLDERNAME>
ls
git --version
git config --global user.name "Your Name"
git config --global user.email youremail@example.com
git config --global user.username uSeRnAmE
git init
git status
git diff
git add <FILENAME>
git add .
git commit -m "your commit message"
git clone <URL>
git branch <BRANCHNAME>
git checkout <BRANCHNAME>
git checkout -b <BRANCHNAME>
git branch
git branch -m <NEWBRANCHNAME>
git remote add <REMOTENAME> <URL>
git remote set-url <REMOTENAME> <URL>
git remote -v
git pull
git pull <REMOTENAME> <REMOTEBRANCH>
git fetch --dry-run
git push <REMOTENAME> <BRANCHNAME>
git merge <BRANCHNAME>
git branch -D <BRANCHNAME>
git push <REMOTENAME> --delete <BRANCHNAME>