summaryrefslogtreecommitdiff
path: root/Makefile
blob: ca0222477eb97f861b467d5baad05a4203f0db8e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
install:
cp git-prompt.sh /etc/
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