命令 git 中的 "develop" 和 "origin/develop" 有什么区别
what is difference of "develop" and "origin/develop" in command git
我是新手,开始使用 git 进行项目。
我没有注意到 "Branch" 和 "origin/Branch" 的区别
请指导我。
Branch
是您的本地分支,origin/Branch
是您的远程分支。
要确定哪些分支是本地分支或远程分支,只需使用以下 git 命令。
$ git branch # see local branches
$ git branch -r # see remote branches
$ git branch -a # see local and remote branches
我是新手,开始使用 git 进行项目。
我没有注意到 "Branch" 和 "origin/Branch" 的区别
请指导我。
Branch
是您的本地分支,origin/Branch
是您的远程分支。
要确定哪些分支是本地分支或远程分支,只需使用以下 git 命令。
$ git branch # see local branches
$ git branch -r # see remote branches
$ git branch -a # see local and remote branches