git

创建分支
git checkout -b [name]
git push --set-upstream origin [name]

切换分支
git checkout [name]
查看分支列表
git branch

忽略权限更改
git config core.filemode false

评论