diff options
author | Junio C Hamano <gitster@pobox.com> | 2013-09-05 14:41:40 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2013-09-05 14:41:40 -0700 |
commit | d2dbd399fa03b37ce797ed6fc609574a7e677079 (patch) | |
tree | e594a762555b0afe94b675d5b57e55f5d54f64c3 | |
parent | 57e4c1783f056ce2d50a732c0fccff2a1fe99563 (diff) | |
parent | 2ea3df68e881405940596b8c299921f681f8c22c (diff) | |
download | git-d2dbd399fa03b37ce797ed6fc609574a7e677079.tar.gz |
Sync with maint
* maint:
Documentation/git-merge.txt: fix formatting of example block
-rw-r--r-- | Documentation/git-merge.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Documentation/git-merge.txt b/Documentation/git-merge.txt index 8c7f2f66d8..a74c3713c6 100644 --- a/Documentation/git-merge.txt +++ b/Documentation/git-merge.txt @@ -186,11 +186,11 @@ In such a case, you can "unwrap" the tag yourself before feeding it to `git merge`, or pass `--ff-only` when you do not have any work on your own. e.g. ---- +---- git fetch origin git merge v1.2.3^0 git merge --ff-only v1.2.3 ---- +---- HOW CONFLICTS ARE PRESENTED |