logoalt Hacker News

binaryturtletoday at 9:17 AM3 repliesview on HN

I use Subversion w/o a server too. You can have your repositories locally (file:///Path/to/repository). All my own (single man) projects are in local SVN repositories. For my use case git is just too much extra friction, and I still love to have my one single unique global revisions number that is linearly increasing with each commit. :)


Replies

ktpsnstoday at 9:51 AM

I loved the simple increasing numbers of Subversion. This was better then CVS "ad-hoc" versioning and also far better then git's hashes. Single numbers are easy for humans. I would love git would make it possible to work that way (there is one way: `git describe` can show something like "v1.0.4-14-g2414721" which means "14 commits ahead of tag v1.0.4".)

show 2 replies
adastra22today at 10:42 AM

git rev-list --count HEAD

raverbashingtoday at 10:20 AM

Yes but the .svn dirs everywhere keep being annoying

show 1 reply