修正对 tag 的说明.

Signed-off-by: rick.chan <chenyang@autoai.com>
This commit is contained in:
rick.chan 2020-08-05 17:03:37 +08:00
parent bff765e1d4
commit 7002fe3ac7
1 changed files with 10 additions and 4 deletions

View File

@ -253,6 +253,12 @@ git pull origin new:master
如果远程仓库有所变更,但本地代码没有更新就进行了 commit在使用 git pull 的时候会进行自动 merge如果有冲突则需要手动解决。
如需将远程谋 Tag fetch 到本地,则命令为:
```bash
git fetch origin tag <tagname>
```
## 13. 删除远程分支/Tag
删除远程分支命令为:
@ -275,16 +281,16 @@ git remote prune <repository>
## 14. 推送/获取 Tag
推送本地 Tag 到远程的命令为:
将本地 Tag 同步到远程的命令为:
```bash
git push --tags
git push --tags [-f]
```
从远程获取 Tag 到本地的命令为:
将远程 Tag 同步到本地的命令为:
```bash
git fetch origin tag <tagname>
git pull --tags [-f]
```
## 15. Rebase