补充为本地分支指定一个与之对应的远程分支方法.
Signed-off-by: ithink.chan <chenyang@autoai.com>
This commit is contained in:
parent
a04ff11355
commit
8920d065db
|
@ -111,7 +111,7 @@ git 支持 http、https、ssh 格式的 URL 访问。
|
|||
|
||||
通过以下命令创建新的本地分支:
|
||||
|
||||
git branch <branch name>
|
||||
git branch <branch>
|
||||
|
||||
还可以通过以下命令查看分支情况:
|
||||
|
||||
|
@ -120,19 +120,23 @@ git 支持 http、https、ssh 格式的 URL 访问。
|
|||
|
||||
使用下列命令切换到对应分支:
|
||||
|
||||
git checkout <branch name>
|
||||
git checkout <branch>
|
||||
|
||||
删除某本地分支的命令为:
|
||||
|
||||
git branch -d <branch name>
|
||||
git branch -d <branch>
|
||||
|
||||
删除某远程分支的命令为
|
||||
|
||||
git push <repository> --delete <branch name>
|
||||
git push <repository> --delete <branch>
|
||||
|
||||
将某个分支与当前分支合并的命令为:
|
||||
|
||||
git merge <branch name>
|
||||
git merge <branch>
|
||||
|
||||
以下命令为本地分支指定一个与之对应的远程分支:
|
||||
|
||||
git branch --set-upstream-to=origin/<remote branch> <local branch>
|
||||
|
||||
## 查看历史
|
||||
|
||||
|
|
Loading…
Reference in New Issue