Changes between Version 36 and Version 37 of SourceCodeGit
- Timestamp:
- Feb 9, 2014, 9:02:40 AM (11 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
SourceCodeGit
v36 v37 55 55 {{{ 56 56 $ cd boinc_repo 57 57 58 $ git status 58 59 # On branch master 59 60 nothing to commit, working directory clean 61 62 # What's the most recent tag for the currently checked-out version? 63 $ git describe --always --tag 64 client_release/7.2/7.2.9 60 65 }}} 61 66 … … 144 149 git tag 145 150 }}} 146 to list all the visible tags. 151 to list all the visible tags. Note that the tags come in *lexicographical order*, not in *version order*! 152 153 If you want to sort them by version number: 154 155 {{{ 156 git tag | perl version_path_sorter.pl 157 }}} 158 159 Where the source for the sorter function is here: VersionPathSorter 147 160 148 161 Run