X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=Documentation%2Fgit-merge.txt;h=d285cba033325f8652996ea71a06d53c22424dae;hb=660d579d6ff0ac29b8f7b38b3da73f09214d39aa;hp=3c08a6f7db0954d2a7fea46b0309434766f73b68;hpb=c3f0baacadbd7b5710052213a2ec3cdd5b77bb6e;p=git.git diff --git a/Documentation/git-merge.txt b/Documentation/git-merge.txt index 3c08a6f7d..d285cba03 100644 --- a/Documentation/git-merge.txt +++ b/Documentation/git-merge.txt @@ -9,8 +9,8 @@ git-merge - Join two or more development histories together SYNOPSIS -------- [verse] -'git-merge' [-n] [--no-commit] [--squash] [-s ]... - -m= ... +'git-merge' [-n] [--summary] [--no-commit] [--squash] [-s ]... + [-m ] ... DESCRIPTION ----------- @@ -95,7 +95,7 @@ When things cleanly merge, these things happen: 1. the results are updated both in the index file and in your working tree, 2. index file is written out as a tree, -3. the tree gets committed, and +3. the tree gets committed, and 4. the `HEAD` pointer gets advanced. Because of 2., we require that the original state of the index @@ -136,7 +136,7 @@ After seeing a conflict, you can do two things: * Resolve the conflicts. `git-diff` would report only the conflicting paths because of the above 2. and 3.. Edit the - working tree files into a desirable shape, `git-update-index` + working tree files into a desirable shape, `git-add` or `git-rm` them, to make the index file contain what the merge result should be, and run `git-commit` to commit the result.