Hello world this is my github testing.
ssh-keygen -t rsa -b 4096 -C "[email protected]"
git push -u origin <branch name>
git branch
git checkout -b <branch name>
git branch -d <name of the branch>
git diff <other branch name>
git commit -am "message"
git merge <branch name>
git reset <empty or file name>
git reset HEAD<~<a number>>
git reset HEAD~1
git reset HEAD~2
git log // you can reset(reset stages without saving change locally) from a certain point by using commit hash instead of HEAD
git reset --hard <hash or HEAD>