Skip to content

Commit d6a4290

Browse files
authored
Merge pull request #794 from unixorn/add-git-semvers
Add Daniel's `git-semvers`
2 parents d38a6ae + a1cf3a9 commit d6a4290

File tree

3 files changed

+40
-0
lines changed

3 files changed

+40
-0
lines changed

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -157,6 +157,7 @@ If you wrote one of these scripts and want it removed from this collection, plea
157157
| `git-rm-deleted-from-repo` | Joe Block <[email protected]> | Removes files you deleted with `rm` from the repository for you. |
158158
| `git-root-directory` | Joe Block <[email protected]> | Prints the path to the root of the `git` repository you're in. |
159159
| `git-run-command-on-revisions` | Gary Bernhardt's [dotfiles](https://github.com/garybernhardt/dotfiles) | Runs a given command over a range of `git` revisions. |
160+
| `git-semvers` | [Daniel Hoherd](http://github.com/danielhoherd) | List all the tags in a repo that are semver compliant |
160161
| `git-shamend` | Danielle Sucher's [git-shamend](http://www.daniellesucher.com/2014/05/08/git-shamend/) blog post | Amends your staged changes as a fixup (keeping the pre-existing commit message) to the specified commit, or HEAD if no revision is specified. |
161162
| `git-show-overwritten` | Mislav Marohnić's [dotfiles](https://github.com/mislav/dotfiles) | Aggregates `git blame` information about the original owners of lines changed or removed in the '<base>...<head>' diff. |
162163
| `git-shrink-repo` | Based on [gimbo/gimbo-git.zsh](https://github.com/gimbo/gimbo-git.zsh/blob/master/gimbo-git.zsh) | Shrinks your clone of a `git` repository. |

bin/git-list-semvers

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
git-semvers

bin/git-semvers

+38
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
#!/usr/bin/env bash
2+
#
3+
# Originally from hangops slack
4+
5+
set -o pipefail
6+
set -e
7+
8+
if [[ -n "$DEBUG" ]]; then
9+
# shellcheck disable=SC2086
10+
if [[ "$(echo $DEBUG | tr '[:upper:]' '[:lower:]')" == "verbose" ]]; then
11+
set -x
12+
fi
13+
fi
14+
15+
function debug() {
16+
if [[ -n "$DEBUG" ]]; then
17+
echo "$@"
18+
fi
19+
}
20+
21+
function echo-stderr() {
22+
echo "$@" 1>&2 ## Send message to stderr.
23+
}
24+
25+
function fail() {
26+
printf '%s\n' "$1" >&2 ## Send message to stderr. Exclude >&2 if you don't want it that way.
27+
exit "${2-1}" ## Return a code specified by $2 or 1 by default.
28+
}
29+
30+
function my-name() {
31+
basename "$0"
32+
}
33+
34+
function usage() {
35+
echo "Usage: $(my-name) ARG ARG"
36+
}
37+
38+
git tag -l "v*.*.*" --sort=-v:refname | awk -F. '!seen[$1,$2]++'

0 commit comments

Comments
 (0)