mirror of
https://github.com/pbatard/rufus.git
synced 2024-08-14 23:57:05 +00:00
70a5116bb7
* also fixed removal of .tag in git post commit hook
14 lines
No EOL
372 B
Bash
14 lines
No EOL
372 B
Bash
#!/bin/sh
|
|
#
|
|
# Creates a tag according to the number of commits on this branch
|
|
#
|
|
# To have git run this script on commit, create a "post-commit" text file in
|
|
# .git/hooks/ with the following content:
|
|
# #!/bin/sh
|
|
# source ./_post-commit.sh
|
|
|
|
type -P git &>/dev/null || { echo "git command not found. Aborting." >&2; exit 1; }
|
|
|
|
TAGVER=`cat ./.tag`
|
|
git tag "#$TAGVER"
|
|
rm ./.tag |