Sobes.tech
Junior

What Git commands do you know?

sobes.tech AI

Answer from AI

git init git clone [URL] git add . or git add [file] git commit -m "[message]" git status git diff git log git branch git branch [branch_name] git checkout [branch_name] git checkout -b [new_branch_name] git merge [branch_name] 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 [name] git fetch