美文网首页
Git常用命令

Git常用命令

作者: YiKuanLee | 来源:发表于2018-07-20 17:33 被阅读0次

新建分支并切换到新建分支

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

相关文章

网友评论

      本文标题:Git常用命令

      本文链接:https://www.haomeiwen.com/subject/btmqmftx.html