git help

git version  # Display the version of git.

git help  # Prints the synopsis and a list of the most commonly used commands.
git help git  # Display the git man page.

git <COMMAND> 
- `git branch ` 会根据tag创建新的分支 - `git checkout newbranch` 切换到新的分支 - `git push origin newbranch` 把本地创建的分支提交到远程仓库 - `git branch` 查看分支 - `git branch `创建分支 - `git checkout `切换分支 - `git checkout -b `创