创建新的分支
git branch -b [branch name]
推送本地分支到远端
git push origin HEAD -u
查看本地分支
git branch
查看远程分支
git branch -r
拉取远程更新
git pull
学习源于
https://blog.csdn.net/top_code/article/details/51931916
一 配置git 使其对文件名大小写敏感
git config core.ignorecase false
zhangzhi@moke:~/code/demo$ git config core.ignorecase false
来源:http://yijiebuyi.com/blog/e96eccc4e6f7168e0ce92fa9c79f0d23.html
网友评论