新建分支并切换到新建分支
git checkout -b [Branch name]
e.g. git chckout -b newbranch
查看分支
查看本地分支
git branch
查看远程分支
git branch -a
创建远程分支
git remote add origin [Branch name]
e.g. git remote add origin newbranch
Git管理常用命令
提交项目到本地仓库
git add ...(项目文件/文件)
对项目添加说明
git commit -m "(对该项目的说明)"
将本地的仓库推送到远程
git push origin [Branch name]
e.g. git push origin newbranch
将远程仓库内容PULL到本地
git pull origin [Branch name]
e.g. git pull origin newbranch
网友评论