Merge pull request #40 from ejmr/show-most-recent-tag

Add a tip to show the most recent tag
This commit is contained in:
hemanth.hm 2015-11-06 12:56:00 +05:00
commit 35376fe492
2 changed files with 10 additions and 0 deletions

View File

@ -66,6 +66,7 @@
* [Ignore one file on commit (e.g. Changelog).](https://github.com/git-tips/tips#ignore-one-file-on-commit-eg-changelog)
* [Stash changes before rebasing](https://github.com/git-tips/tips#stash-changes-before-rebasing)
* [Fetch pull request by ID to a local branch](https://github.com/git-tips/tips#fetch-pull-request-by-id-to-a-local-branch)
* [Show the most recent tag on the current branch](https://github.com/git-tips/tips#show-the-most-recent-tag-on-the-current-branch)
<!-- Dont remove or change the comment below that can break automatic updates. More info at <http://npm.im/doxie.inject>. -->
<!-- @doxie.inject end toc -->
@ -467,5 +468,10 @@ __Alternatives:__
git pull origin pull/<id>/head:<branch-name>
```
## Show the most recent tag on the current branch
```sh
git describe --tags --abbrev=0
```
<!-- Dont remove or change the comment below that can break automatic updates. More info at <http://npm.im/doxie.inject>. -->
<!-- @doxie.inject end -->

View File

@ -264,5 +264,9 @@
"title": "Fetch pull request by ID to a local branch",
"tip": "git fetch origin pull/<id>/head:<branch-name>",
"alternatives": ["git pull origin pull/<id>/head:<branch-name>"]
},
{
"title": "Show the most recent tag on the current branch",
"tip": "git describe --tags --abbrev=0"
}
]