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