Git Tutorial
Basic instructions git [command] [--flags] [arguments] git status [-s] git log [--oneline] [-${num of line}] git clone <remote_url> [localprojectname] git remote add <name> <remote_url> git push [-u] [<remote>] [<branch>] git show HEAD~(parent) ~2(parent of parent) ^(first parent) ^2(second parent) git tag <tagname> [<commit>] git push <remote> <tagname> git checkout -b <branch> git branch --all git branch -d <branch> git merge --no-ff <branch> git commit --amend --no-edit Create and make an initial push mkdir machine_1 cd machine_1 git init # initialize git in current directory git status # show changes of the Working Tree # Create hello.py git add . # update changes in the Staging Area/Index git commit -m "Hello World!" # update changes in the Commit Tree git remote add origin https://github.com/Yufeng98/git_tutorial.git git push origin master See details in git_tutorial repositary. ...