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