用 <repository> 替代 origin.

Signed-off-by: rick.chan <chenyang@autoai.com>
This commit is contained in:
rick.chan 2020-10-02 18:33:04 +08:00
parent c78aa480e3
commit 449159ce88
1 changed files with 7 additions and 7 deletions

View File

@ -174,10 +174,10 @@ git checkout <branch>
git push <repository> <local branch>:<remote branch>
```
如,推送本地的 new 分支与 origin 主机的 master 分支合并:
如,推送本地的 new 分支与 \<repository\> 主机的 master 分支合并:
```bash
git push origin new:master
git push <repository> new:master
```
从远程分支更新本地分支:
@ -186,10 +186,10 @@ git push origin new:master
git pull <repository> <remote branch>:<local branch>
```
如,要取回 origin 主机的 new 分支,与本地的 master 分支合并:
如,要取回 \<repository\> 主机的 new 分支,与本地的 master 分支合并:
```bash
git pull origin new:master
git pull <repository> new:master
```
如果远程仓库有所变更,但本地代码没有更新就进行了 commit在使用 git pull 的时候会进行自动 merge如果有冲突则需要手动解决。
@ -222,7 +222,7 @@ git branch --set-upstream-to=<repository>/<remote branch> <local branch>
删除远程分支命令为:
```bash
git push origin --delete <branch name>
git push <repository> --delete <branch name>
```
如果谋远程分支已经删除,需要同步到本地,可使用以下命令:
@ -306,13 +306,13 @@ git pull --tags [-f]
如需将远程谋 Tag fetch 到本地,则命令为:
```bash
git fetch origin tag <tag name>
git fetch <repository> tag <tag name>
```
删除远程 Tag 的命令为:
```bash
git push origin --delete tag <tag name>
git push <repository> --delete tag <tag name>
```
如果谋远程 Tab 已经删除,需要同步到本地,可使用以下命令: