Skip to content

Commit

Permalink
新增:切回到某个标签的命令
Browse files Browse the repository at this point in the history
  • Loading branch information
521xueweihan committed Feb 16, 2017
1 parent 9ef99d2 commit 41ffe25
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ Git是一个“分布式版本管理工具”,简单的理解版本管理工
* [推送标签到远程仓库](#推送标签到远程仓库)
* [删除本地标签](#删除本地标签)
* [删除远程标签](#删除远程标签)
* [切回到某个标签](#切回到某个标签)
* [放弃工作区的修改](#放弃工作区的修改)
* [回到某一个commit的状态,并重新增添一个commit](#回到某一个commit的状态并重新增添一个commit)
* [回到某个commit的状态,并删除后面的commit](#回到某个commit的状态并删除后面的commit)
Expand Down Expand Up @@ -235,11 +236,17 @@ git tag -d <tag-name>
```

## 删除远程标签
删除远程标签需要**先删除本地标签**,再执行下面的命令
删除远程标签需要**先删除本地标签**,再执行下面的命令
```sh
git push origin :refs/tags/<tag-name>
```

## 切回到某个标签
一般上线之前都会打tag,就是为了防止上线后出现问题,方便快速回退到上一版本。下面的命令是回到某一标签下的状态:
```sh
git checkout -b branch_name tag_name
```

## 放弃工作区的修改
```sh
git checkout <file-name>
Expand Down

0 comments on commit 41ffe25

Please sign in to comment.