add rename-branch command (#576)

This commit is contained in:
Hozefa 2016-09-10 20:41:32 -07:00 committed by hemanth.hm
parent 9d941e15e5
commit 5a8ce5e364
6 changed files with 240 additions and 0 deletions

View file

@ -40,6 +40,7 @@
- [`git rebase-patch`](#git-rebase-patch)
- [`git reauthor`](#git-reauthor)
- [`git release`](#git-release)
- [`git rename-branch`](#git-rename-branch)
- [`git rename-tag`](#git-rename-tag)
- [`git repl`](#git-repl)
- [`git reset-file`](#git-reset-file)
@ -361,6 +362,17 @@ Does the following:
- Executes _.git/hooks/post-release.sh_ (if present)
## git rename-branch
Rename a branch (locally and remotely).
```
# renames any branch
$ git rename-branch new-name old-name
# renames current branch
$ git rename-branch new-name
```
## git rename-tag
Rename a tag (locally and remotely).

13
bin/git-rename-branch Executable file
View file

@ -0,0 +1,13 @@
#!/usr/bin/env bash
# Assert there is at least one branch provided
test -z $1 && echo "new branch name required." 1>&2 && exit 1
if [ -z $2 ]
then
$2=${git symbolic-ref --short -q HEAD}
fi
git branch -m $2 $1
git push origin :$2
git push --set-upstream origin $1

View file

@ -393,6 +393,7 @@ zstyle ':completion:*:*:git:*' user-commands \
rebase-patch:'rebases a patch' \
refactor:'create refactor branch' \
release:'commit, tag and push changes to the repository' \
rename-branch:'rename a branch' \
rename-tag:'rename a tag' \
repl:'git read-eval-print-loop' \
reset-file:'reset one file' \

51
man/git-rename-branch.1 Normal file
View file

@ -0,0 +1,51 @@
.\" generated with Ronn/v0.7.3
.\" http://github.com/rtomayko/ronn/tree/0.7.3
.
.TH "GIT\-RENAME\-BRANCH" "1" "September 2016" "" ""
.
.SH "NAME"
\fBgit\-rename\-branch\fR \- rename local branch and push to remote
.
.SH "SYNOPSIS"
\fBgit\-rename\-branch\fR <new\-branch> <old\-branch>
.
.SH "DESCRIPTION"
.
.nf
Rename local branch and push the new branch to remote
.
.fi
.
.SH "OPTIONS"
.
.nf
&lt;new\-branch&gt;
New branch name
&lt;old\-branch&gt;
Old branch whose has to be renamed\. This is an optional parameter\. If no value is supplied then the current branch will be renamed\.
.
.fi
.
.SH "EXAMPLES"
.
.nf
$ git rename\-branch new\-name old\-name
$ git rename\-branch new\-name
.
.fi
.
.SH "AUTHOR"
Written by Hozefa Jodiawalla <\fIhozefarules@gmail\.com\fR>
.
.SH "REPORTING BUGS"
<\fIhttps://github\.com/tj/git\-extras/issues\fR>
.
.SH "SEE ALSO"
<\fIhttps://github\.com/tj/git\-extras\fR>

125
man/git-rename-branch.html Normal file
View file

@ -0,0 +1,125 @@
<!DOCTYPE html>
<html>
<head>
<meta http-equiv='content-type' value='text/html;charset=utf8'>
<meta name='generator' value='Ronn/v0.7.3 (http://github.com/rtomayko/ronn/tree/0.7.3)'>
<title>git-rename-branch(1) - rename local branch and push to remote</title>
<style type='text/css' media='all'>
/* style: man */
body#manpage {margin:0}
.mp {max-width:100ex;padding:0 9ex 1ex 4ex}
.mp p,.mp pre,.mp ul,.mp ol,.mp dl {margin:0 0 20px 0}
.mp h2 {margin:10px 0 0 0}
.mp > p,.mp > pre,.mp > ul,.mp > ol,.mp > dl {margin-left:8ex}
.mp h3 {margin:0 0 0 4ex}
.mp dt {margin:0;clear:left}
.mp dt.flush {float:left;width:8ex}
.mp dd {margin:0 0 0 9ex}
.mp h1,.mp h2,.mp h3,.mp h4 {clear:left}
.mp pre {margin-bottom:20px}
.mp pre+h2,.mp pre+h3 {margin-top:22px}
.mp h2+pre,.mp h3+pre {margin-top:5px}
.mp img {display:block;margin:auto}
.mp h1.man-title {display:none}
.mp,.mp code,.mp pre,.mp tt,.mp kbd,.mp samp,.mp h3,.mp h4 {font-family:monospace;font-size:14px;line-height:1.42857142857143}
.mp h2 {font-size:16px;line-height:1.25}
.mp h1 {font-size:20px;line-height:2}
.mp {text-align:justify;background:#fff}
.mp,.mp code,.mp pre,.mp pre code,.mp tt,.mp kbd,.mp samp {color:#131211}
.mp h1,.mp h2,.mp h3,.mp h4 {color:#030201}
.mp u {text-decoration:underline}
.mp code,.mp strong,.mp b {font-weight:bold;color:#131211}
.mp em,.mp var {font-style:italic;color:#232221;text-decoration:none}
.mp a,.mp a:link,.mp a:hover,.mp a code,.mp a pre,.mp a tt,.mp a kbd,.mp a samp {color:#0000ff}
.mp b.man-ref {font-weight:normal;color:#434241}
.mp pre {padding:0 4ex}
.mp pre code {font-weight:normal;color:#434241}
.mp h2+pre,h3+pre {padding-left:0}
ol.man-decor,ol.man-decor li {margin:3px 0 10px 0;padding:0;float:left;width:33%;list-style-type:none;text-transform:uppercase;color:#999;letter-spacing:1px}
ol.man-decor {width:100%}
ol.man-decor li.tl {text-align:left}
ol.man-decor li.tc {text-align:center;letter-spacing:4px}
ol.man-decor li.tr {text-align:right;float:right}
</style>
</head>
<!--
The following styles are deprecated and will be removed at some point:
div#man, div#man ol.man, div#man ol.head, div#man ol.man.
The .man-page, .man-decor, .man-head, .man-foot, .man-title, and
.man-navigation should be used instead.
-->
<body id='manpage'>
<div class='mp' id='man'>
<div class='man-navigation' style='display:none'>
<a href="#NAME">NAME</a>
<a href="#SYNOPSIS">SYNOPSIS</a>
<a href="#DESCRIPTION">DESCRIPTION</a>
<a href="#OPTIONS">OPTIONS</a>
<a href="#EXAMPLES">EXAMPLES</a>
<a href="#AUTHOR">AUTHOR</a>
<a href="#REPORTING-BUGS">REPORTING BUGS</a>
<a href="#SEE-ALSO">SEE ALSO</a>
</div>
<ol class='man-decor man-head man head'>
<li class='tl'>git-rename-branch(1)</li>
<li class='tc'></li>
<li class='tr'>git-rename-branch(1)</li>
</ol>
<h2 id="NAME">NAME</h2>
<p class="man-name">
<code>git-rename-branch</code> - <span class="man-whatis">rename local branch and push to remote</span>
</p>
<h2 id="SYNOPSIS">SYNOPSIS</h2>
<p><code>git-rename-branch</code> &lt;new-branch&gt; &lt;old-branch&gt;</p>
<h2 id="DESCRIPTION">DESCRIPTION</h2>
<pre><code>Rename local branch and push the new branch to remote
</code></pre>
<h2 id="OPTIONS">OPTIONS</h2>
<pre><code>&amp;lt;new-branch&amp;gt;
New branch name
&amp;lt;old-branch&amp;gt;
Old branch whose has to be renamed. This is an optional parameter. If no value is supplied then the current branch will be renamed.
</code></pre>
<h2 id="EXAMPLES">EXAMPLES</h2>
<pre><code>$ git rename-branch new-name old-name
$ git rename-branch new-name
</code></pre>
<h2 id="AUTHOR">AUTHOR</h2>
<p>Written by Hozefa Jodiawalla &lt;<a href="&#x6d;&#97;&#105;&#x6c;&#116;&#111;&#58;&#x68;&#x6f;&#x7a;&#x65;&#x66;&#x61;&#114;&#117;&#x6c;&#101;&#x73;&#x40;&#x67;&#x6d;&#97;&#105;&#108;&#x2e;&#99;&#x6f;&#109;" data-bare-link="true">&#104;&#x6f;&#x7a;&#x65;&#x66;&#x61;&#x72;&#x75;&#x6c;&#x65;&#115;&#64;&#103;&#x6d;&#97;&#105;&#x6c;&#46;&#x63;&#111;&#109;</a>&gt;</p>
<h2 id="REPORTING-BUGS">REPORTING BUGS</h2>
<p>&lt;<a href="https://github.com/tj/git-extras/issues" data-bare-link="true">https://github.com/tj/git-extras/issues</a>&gt;</p>
<h2 id="SEE-ALSO">SEE ALSO</h2>
<p>&lt;<a href="https://github.com/tj/git-extras" data-bare-link="true">https://github.com/tj/git-extras</a>&gt;</p>
<ol class='man-decor man-foot man foot'>
<li class='tl'></li>
<li class='tc'>September 2016</li>
<li class='tr'>git-rename-branch(1)</li>
</ol>
</div>
</body>
</html>

38
man/git-rename-branch.md Normal file
View file

@ -0,0 +1,38 @@
git-rename-branch(1) -- rename local branch and push to remote
================================
## SYNOPSIS
`git-rename-branch` &lt;new-branch&gt; &lt;old-branch&gt;
## DESCRIPTION
Rename local branch and push the new branch to remote
## OPTIONS
&lt;new-branch&gt;
New branch name
&lt;old-branch&gt;
Old branch whose has to be renamed. This is an optional parameter. If no value is supplied then the current branch will be renamed.
## EXAMPLES
$ git rename-branch new-name old-name
$ git rename-branch new-name
## AUTHOR
Written by Hozefa Jodiawalla &lt;<hozefarules@gmail.com>&gt;
## REPORTING BUGS
&lt;<https://github.com/tj/git-extras/issues>&gt;
## SEE ALSO
&lt;<https://github.com/tj/git-extras>&gt;