diff options
author | Cem Keylan <cem@ckyln.com> | 2020-05-28 16:45:43 +0300 |
---|---|---|
committer | Cem Keylan <cem@ckyln.com> | 2020-05-28 16:45:43 +0300 |
commit | 1dabf5a8d511db458dd529588e57a8ed8185787a (patch) | |
tree | c5905caa9b93fa4c63ee5e8e8dbdccd53d5aca53 /repo/git/kiss-bump | |
parent | 7bfa97d6fa2452d0517c4f820e44033b5a50cd50 (diff) | |
download | cpt-extra-20200528.tar.gz |
added new utilities, changed repository structure20200528
Diffstat (limited to 'repo/git/kiss-bump')
-rwxr-xr-x | repo/git/kiss-bump | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/repo/git/kiss-bump b/repo/git/kiss-bump new file mode 100755 index 0000000..e4b758f --- /dev/null +++ b/repo/git/kiss-bump @@ -0,0 +1,12 @@ +#!/bin/sh +# Commit the current directory as a version bump + +case "$1" in --help|-h) printf '%s\n' "usage: ${0##*/}"; exit 0 ; esac + +read ver _ < version || { + printf '%s\n' "could not find version file, are you on a package directory?" + exit 1 +} + +git reset; git add . +git commit -m "${PWD##*/}: bump to $ver" |