We don’t allow questions seeking recommendations for software libraries, tutorials, tools, books, or other off-site resources. You can edit the question so it can be answered with facts and citations.
Closed 4 years ago.
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(4)
我最好的一篇是从 Scott Chacon 的一次演讲中摘取的:
每次打字我都会感到兴奋git lol 。
Best one I have was picked up off Scott Chacon from a talk he gave:
I get excited every time I type
git lol
.我在修剪 GIT 检查中提到的别名(以及
修复! 操作):,
确实帮助我经常提交,即使我正处于一个任务的中间,允许我在最后通过一次连贯的提交来完成它(而不是太多小的中间提交)。
不完全是“有趣”,但非常有用。
The aliases I mention in Trimming GIT Checkins (and the
fixup!
action from the recent Git1.7.0):, really help me to commit very often even though I am in the middle of one task, allowing me to finish it with one coherent commit at the end (instead of too many small intermediate commits).
Not exactly "fun", but very useful.
我使用:
它使差异和事情变得漂亮。 :-)
I use:
It makes diffs and things pretty. :-)
这是我每天在 git 中输入的 80%。我知道我可以将最后两个别名与
-am
标志组合起来,但最好将它们分开,这样我可以在提交之前检查索引的状态。This is 80% of the typing I do in git on any given day. I know I can combine the last two aliases with the
-am
flag, but it's nice to have the separated, that way I can check the status of the index before I commit.