diff options
author | Junio C Hamano <junkio@cox.net> | 2006-03-26 23:44:14 -0800 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-03-26 23:44:14 -0800 |
commit | d93067d9c7fb210766c7282d662289f54d53f93a (patch) | |
tree | a463ad3ce94a987ec3d00e10eaa98ede1fe0495d /Documentation | |
parent | f4e96f97e85c145616bc2e23e9441bc0daa2906e (diff) | |
parent | b0a3de42316a4e8f1d561cbe12b7bb282631a0d6 (diff) | |
download | git-d93067d9c7fb210766c7282d662289f54d53f93a.tar.gz git-d93067d9c7fb210766c7282d662289f54d53f93a.tar.xz |
Merge branch 'master' into next
* master:
Optionally do not list empty directories in git-ls-files --others
Document git-rebase behavior on conflicts.
Fix error handling for nonexistent names
Diffstat (limited to 'Documentation')
-rw-r--r-- | Documentation/git-ls-files.txt | 3 | ||||
-rw-r--r-- | Documentation/git-rebase.txt | 12 |
2 files changed, 15 insertions, 0 deletions
diff --git a/Documentation/git-ls-files.txt b/Documentation/git-ls-files.txt index 59f6adc49..796d049be 100644 --- a/Documentation/git-ls-files.txt +++ b/Documentation/git-ls-files.txt @@ -52,6 +52,9 @@ OPTIONS If a whole directory is classified as "other", show just its name (with a trailing slash) and not its whole contents. +--no-empty-directory:: + Do not list empty directories. Has no effect without --directory. + -u|--unmerged:: Show unmerged files in the output (forces --stage) diff --git a/Documentation/git-rebase.txt b/Documentation/git-rebase.txt index b36276c7e..4a7e67a4d 100644 --- a/Documentation/git-rebase.txt +++ b/Documentation/git-rebase.txt @@ -48,6 +48,18 @@ would be: / D---E---F---G master +In case of conflict, git-rebase will stop at the first problematic commit +and leave conflict markers in the tree. After resolving the conflict manually +and updating the index with the desired resolution, you can continue the +rebasing process with + + git am --resolved --3way + +Alternatively, you can undo the git-rebase with + + git reset --hard ORIG_HEAD + rm -r .dotest + OPTIONS ------- <newbase>:: |