aboutsummaryrefslogtreecommitdiffhomepage
path: root/share/functions/__fish_print_svn_rev.fish
blob: 7b8638dca03ecc9a7d43e58f225004a2ac3df1ec (plain)
1
2
3
4
5
6
7
8
9
10
function __fish_print_svn_rev --description 'Print svn revisions'
	svn info | grep "Last Changed Rev" | cut --delimiter " " --fields 4
	echo \{\tRevision at start of the date
	echo HEAD\tLatest in repository
	echo BASE\tBase rev of item\'s working copy
	echo COMMITTED\tLatest commit at or befor base
	echo PREV\tRevision just before COMMITTED


end