<div class="content"><em>git-branch</em> [-r | -a] [-v [--abbrev=<length>]]\r
<em>git-branch</em> [-l] [-f] <branchname> [<start-point>]\r
<em>git-branch</em> (-m | -M) [<oldbranch>] <newbranch>\r
-<em>git-branch</em> (-d | -D) <branchname>…</div></div>\r
+<em>git-branch</em> (-d | -D) [-r] <branchname>…</div></div>\r
</div>\r
<h2>DESCRIPTION</h2>\r
<div class="sectionbody">\r
to happen.</p>\r
<p>With a <tt>-d</tt> or <tt>-D</tt> option, <tt><branchname></tt> will be deleted. You may\r
specify more than one branch for deletion. If the branch currently\r
-has a ref log then the ref log will also be deleted.</p>\r
+has a ref log then the ref log will also be deleted. Use -r together with -d\r
+to delete remote-tracking branches.</p>\r
</div>\r
<h2>OPTIONS</h2>\r
<div class="sectionbody">\r
</dt>\r
<dd>\r
<p>\r
- List the remote-tracking branches.\r
+ List or delete (if used with -d) the remote-tracking branches.\r
</p>\r
</dd>\r
<dt>\r
<div class="content">\r
<pre><tt>$ git clone git://git.kernel.org/.../git.git my.git\r
$ cd my.git\r
-$ git branch -D todo <b>(1)</b></tt></pre>\r
+$ git branch -d -r todo html man <b>(1)</b>\r
+$ git branch -D test <b>(2)</b></tt></pre>\r
</div></div>\r
<ol>\r
<li>\r
<p>\r
-delete todo branch even if the "master" branch does not have all\r
+delete remote-tracking branches "todo", "html", "man"\r
+</p>\r
+</li>\r
+<li>\r
+<p>\r
+delete "test" branch even if the "master" branch does not have all\r
commits from todo branch.\r
</p>\r
</li>\r
</div>\r
<div id="footer">\r
<div id="footer-text">\r
-Last updated 13-Dec-2006 21:32:04 UTC\r
+Last updated 22-Dec-2006 07:28:11 UTC\r
</div>\r
</div>\r
</body>\r
'git-branch' [-r | -a] [-v [--abbrev=<length>]]
'git-branch' [-l] [-f] <branchname> [<start-point>]
'git-branch' (-m | -M) [<oldbranch>] <newbranch>
-'git-branch' (-d | -D) <branchname>...
+'git-branch' (-d | -D) [-r] <branchname>...
DESCRIPTION
-----------
With a `-d` or `-D` option, `<branchname>` will be deleted. You may
specify more than one branch for deletion. If the branch currently
-has a ref log then the ref log will also be deleted.
+has a ref log then the ref log will also be deleted. Use -r together with -d
+to delete remote-tracking branches.
OPTIONS
Move/rename a branch even if the new branchname already exists.
-r::
- List the remote-tracking branches.
+ List or delete (if used with -d) the remote-tracking branches.
-a::
List both remote-tracking branches and local branches.
------------
$ git clone git://git.kernel.org/.../git.git my.git
$ cd my.git
-$ git branch -D todo <1>
+$ git branch -d -r todo html man <1>
+$ git branch -D test <2>
------------
+
-<1> delete todo branch even if the "master" branch does not have all
+<1> delete remote-tracking branches "todo", "html", "man"
+<2> delete "test" branch even if the "master" branch does not have all
commits from todo branch.
<h2>SYNOPSIS</h2>\r
<div class="sectionbody">\r
<div class="verseblock">\r
-<div class="content"><em>git-tag</em> [-a | -s | -u <key-id>] [-f | -d] [-m <msg>] <name> [<head>]\r
+<div class="content"><em>git-tag</em> [-a | -s | -u <key-id>] [-f | -d] [-m <msg> | -F <file>]\r
+ <name> [<head>]\r
<em>git-tag</em> -l [<pattern>]</div></div>\r
</div>\r
<h2>DESCRIPTION</h2>\r
Use the given tag message (instead of prompting)\r
</p>\r
</dd>\r
+<dt>\r
+-F <file>\r
+</dt>\r
+<dd>\r
+<p>\r
+ Take the tag message from the given file. Use <em>-</em> to\r
+ read the message from the standard input.\r
+</p>\r
+</dd>\r
</dl>\r
</div>\r
<h2>Author</h2>\r
</div>\r
<div id="footer">\r
<div id="footer-text">\r
-Last updated 03-Oct-2006 08:41:33 UTC\r
+Last updated 22-Dec-2006 07:28:11 UTC\r
</div>\r
</div>\r
</body>\r
SYNOPSIS
--------
[verse]
-'git-tag' [-a | -s | -u <key-id>] [-f | -d] [-m <msg>] <name> [<head>]
+'git-tag' [-a | -s | -u <key-id>] [-f | -d] [-m <msg> | -F <file>]
+ <name> [<head>]
'git-tag' -l [<pattern>]
DESCRIPTION
-m <msg>::
Use the given tag message (instead of prompting)
+-F <file>::
+ Take the tag message from the given file. Use '-' to
+ read the message from the standard input.
Author
------