美文网首页
git 常用命令

git 常用命令

作者: Eaton_513f | 来源:发表于2018-12-26 09:49 被阅读0次

创建分支

基于develop创建分支并切换到 branch_name分支


git checkout -b branch_name develop 

关联分支

来在远程创建一个与本地branch_name分支并跟踪


git push --set-upstream origin branch_name

相关文章

网友评论

      本文标题:git 常用命令

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