Skip to content

Commit 1ca3866

Browse files
committed
rerere.enabled
1 parent a5be265 commit 1ca3866

File tree

2 files changed

+9
-0
lines changed

2 files changed

+9
-0
lines changed

README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,7 @@
9090
* [List ignored files.](https://github.com/git-tips/tips#list-ignored-files)
9191
* [Status of ignored files.](https://github.com/git-tips/tips#status-of-ignored-files)
9292
* [Commits in Branch1 that are not in Branch2](https://github.com/git-tips/tips#commits-in-branch1-that-are-not-in-branch2)
93+
* [reuse recorded resolution, record and reuse previous conflicts resolutions.](https://github.com/git-tips/tips#reuse-recorded-resolution-record-and-reuse-previous-conflicts-resolutions)
9394

9495
<!-- Don’t remove or change the comment below – that can break automatic updates. More info at <http://npm.im/doxie.inject>. -->
9596
<!-- @doxie.inject end toc -->
@@ -623,5 +624,10 @@ git status --ignored
623624
git log Branch1 ^Branch2
624625
```
625626

627+
## reuse recorded resolution, record and reuse previous conflicts resolutions.
628+
```sh
629+
git config --global rerere.enabled 1
630+
```
631+
626632
<!-- Don’t remove or change the comment below – that can break automatic updates. More info at <http://npm.im/doxie.inject>. -->
627633
<!-- @doxie.inject end -->

tips.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -275,4 +275,7 @@
275275
},{
276276
"title": "Commits in Branch1 that are not in Branch2",
277277
"tip": "git log Branch1 ^Branch2"
278+
}, {
279+
"title": "reuse recorded resolution, record and reuse previous conflicts resolutions.",
280+
"tip":"git config --global rerere.enabled 1"
278281
}]

0 commit comments

Comments
 (0)