Junior
Quali comandi Git conosci?
sobes.tech AI
Risposta dell'AI
git init
git clone [URL]
git add . o git add [file]
git commit -m "[messaggio]"
git status
git diff
git log
git branch
git branch [nome_del_branch]
git checkout [nome_del_branch]
git checkout -b [nome_nuovo_branch]
git merge [nome_del_branch]
git pull
git push
git remote add origin [URL]
git remote -v
git stash
git stash apply
git reset [modalità] [commit]
git revert [commit]
git tag [nome]
git fetch