Junior
Quelles commandes Git connaissez-vous?
sobes.tech IA
Réponse de l'IA
git init
git clone [URL]
git add . ou git add [fichier]
git commit -m "[message]"
git status
git diff
git log
git branch
git branch [nom_de_branche]
git checkout [nom_de_branche]
git checkout -b [nom_de_nouvelle_branche]
git merge [nom_de_branche]
git pull
git push
git remote add origin [URL]
git remote -v
git stash
git stash apply
git reset [mode] [commit]
git revert [commit]
git tag [nom]
git fetch