summaryrefslogtreecommitdiff
path: root/Makefile
blob: 245101fd5142386814ae8d47416ce23aa5ded468 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
install:
cp git-prompt.sh /etc/
[ -s /etc/prompt ] || ln -sf /etc/git-prompt.sh /etc/prompt
 
clean:
git clean -df
 
tgit:
xclip -i git-demo
echo "ready to paste ..."
 
release: install
 git tag  $(shell git tag -l | awk -F. 'END{printf "%s.%s\n", $$1,$$2+1}')
 git push