Sep 10, 2024
git init
git add
git add [file]
: Adds a specific file.git add .
: Adds all changes since the last save.git commit -m "message"
git log
git checkout [commit-hash]
git remote add origin [URL]
git push
git pull origin master
git checkout -b [branch-name]
: Create a new branch.