diff options
author | Thomas Ackermann <th.acker@arcor.de> | 2013-08-27 20:02:08 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2013-08-27 15:14:44 -0700 |
commit | df47da758e6c7e76f9011f53df1cfdaf3443de1c (patch) | |
tree | 74dbe8e4c30922b4b2cc648790a616d5debba18e /Documentation/user-manual.txt | |
parent | d39765b12e1e1ab8e8a798466d942bd94063c39f (diff) | |
download | git-df47da758e6c7e76f9011f53df1cfdaf3443de1c.tar.gz git-df47da758e6c7e76f9011f53df1cfdaf3443de1c.tar.xz |
Improve section "Manipulating branches"
Add some missing punctuation.
Simplify description of "git branch -d/-D".
Signed-off-by: Thomas Ackermann <th.acker@arcor.de>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'Documentation/user-manual.txt')
-rw-r--r-- | Documentation/user-manual.txt | 20 |
1 files changed, 8 insertions, 12 deletions
diff --git a/Documentation/user-manual.txt b/Documentation/user-manual.txt index 22bab7719..f481813be 100644 --- a/Documentation/user-manual.txt +++ b/Documentation/user-manual.txt @@ -268,27 +268,23 @@ Creating, deleting, and modifying branches is quick and easy; here's a summary of the commands: `git branch`:: - list all branches + list all branches. `git branch <branch>`:: create a new branch named `<branch>`, referencing the same - point in history as the current branch + point in history as the current branch. `git branch <branch> <start-point>`:: create a new branch named `<branch>`, referencing `<start-point>`, which may be specified any way you like, - including using a branch name or a tag name + including using a branch name or a tag name. `git branch -d <branch>`:: - delete the branch `<branch>`; if the branch you are deleting - points to a commit which is not reachable from the current - branch, this command will fail with a warning. + delete the branch `<branch>`; if the branch is not fully + merged in its upstream branch or contained in the current branch, + this command will fail with a warning. `git branch -D <branch>`:: - even if the branch points to a commit not reachable - from the current branch, you may know that that commit - is still reachable from some other branch or tag. In that - case it is safe to use this command to force Git to delete - the branch. + delete the branch `<branch>` irrespective of its merged status. `git checkout <branch>`:: make the current branch `<branch>`, updating the working - directory to reflect the version referenced by `<branch>` + directory to reflect the version referenced by `<branch>`. `git checkout -b <new> <start-point>`:: create a new branch `<new>` referencing `<start-point>`, and check it out. |