Ask HN: Which repository system do you use and how?
I've been reading a lot lately about how each repository system works (especially Git) and was wondering what the predominant system is and how they use it?
Specifically, how they handle branching. It seems like at every place I've worked we've had a little different approach.
Also, do you use Gitstats or SVNStats like programs to have a loose idea of your output (not that lines of code is a good indicator of productivity in the least)?
2 comments
[ 3.0 ms ] story [ 16.7 ms ] threadWhen working on a new bug or feature, i'll branch off of develop and create a branch like 'develop-stats-update'. Then when I'm done I'll merge them together and delete develop-stats-update.
The closest thing I use to see stats-like output is the Impact graph of github, but even if I look at that graph, it's mostly an "ooooh, look at that, shiny!"-type of thing.