mirror of
https://github.com/fish-shell/fish-shell
synced 2025-01-15 14:34:05 +00:00
10 lines
350 B
Fish
10 lines
350 B
Fish
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
|