-
Notifications
You must be signed in to change notification settings - Fork 359
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Translate 07-git-tools rerere v2 #170
Conversation
@@ -1,24 +1,24 @@ | |||
[[_rerere]] | |||
=== Rerere | |||
|
|||
The `git rerere` functionality is a bit of a hidden feature. The name stands for ``reuse recorded resolution'' and as the name implies, it allows you to ask Git to remember how you've resolved a hunk conflict so that the next time it sees the same conflict, Git can automatically resolve it for you. | |||
`git rerere` 功能是一个隐藏的功能。名字代表 ``reuse recorded resolution'' 并且正如名字所暗示的,它允许你让 Git 记住你如何解决一个块冲突的,这样在下一次看到相同的冲突,Git 可以为你自动地解决它。 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
名字代表 reuse recorded resolution'' 并且正如名字所暗示的,它允许你让 Git 记住你如何解决一个块冲突的,这样在下一次看到相同的冲突,Git 可以为你自动地解决它=》正如它的名字
reuse recorded resolution'' 所指,它允许你让 Git 记住解决一个块冲突的方法,这样在下一次看到相同冲突时,Git 可以为你自动地解决它
@networm 已完成 |
@IceNature 已修正。 |
@@ -131,11 +131,11 @@ Recorded resolution for 'hello.rb'. | |||
[master 68e16e5] Merge branch 'i18n' | |||
---- | |||
|
|||
You can see that it "Recorded resolution for FILE". | |||
可以看到它 "Recorded resolution for FILE"。 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
这里的双引号内的东西是否需要翻译出来?
可以看到它"记录了 FILE 的解决方案"
之类?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
不翻译,要翻译的话也是用 Git 中文包中对应的翻译,但是大部分人都是用的英文版 Git,所以建议保留。
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
我也同意@networm 的观点,不翻译为妙
@networm 已审核完毕,并提出 2 个修改意见。 |
@Geno1024 已修正,异议已评论。 |
@networm 已回复评论,无异议。 |
@@ -236,4 +236,4 @@ $ git rebase --continue | |||
Applying: i18n one word | |||
---- | |||
|
|||
So, if you do a lot of re-merges, or want to keep a topic branch up to date with your master branch without a ton of merges, or you rebase often, you can turn on `rerere` to help your life out a bit. | |||
所以,如果做了很多次重新合并,或者想要一个特性分支始终与你的 master 分支保持最新但却不想要一大堆合并,或者经常变基,打开 `rerere` 可以帮助你的生活变得更美好。 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
所以,如果做了很多次重新合并,或者想要一个特性分支始终与你的 master 分支保持最新但却不想要一大堆合并,或者经常变基,你可以将 打开rerere的帮助文档,处理冲突将变得很简单。
@jeffsui 已修正。 |
Fix 'dummy ours merge strategy' display
No description provided.