TE
科技回声
首页24小时热榜最新最佳问答展示工作
GitHubTwitter
首页

科技回声

基于 Next.js 构建的科技新闻平台,提供全球科技新闻和讨论内容。

GitHubTwitter

首页

首页最新最佳问答展示工作

资源链接

HackerNews API原版 HackerNewsNext.js

© 2025 科技回声. 版权所有。

Ask HN: Which repository system do you use and how?

2 点作者 ianl大约 14 年前
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?<p>Specifically, how they handle branching. It seems like at every place I've worked we've had a little different approach.<p>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 条评论

madhouse大约 14 年前
I'm a big fan of git, and the branching model explained here: <a href="http://nvie.com/posts/a-successful-git-branching-model/" rel="nofollow">http://nvie.com/posts/a-successful-git-branching-model/</a><p>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.
ianl大约 14 年前
I use git along with my github account. I generally have several different branches, usually a development branch which is my current development build, staging, and then the master being the primary.<p>When 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.