Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
O
oh-my-zsh
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
github
oh-my-zsh
Commits
e8609b85
Unverified
Commit
e8609b85
authored
Feb 18, 2020
by
Ujwal Dhakal
Committed by
GitHub
Feb 18, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
git: add `grename` to rename a local branch and in the origin remote (#8622)
Co-authored-by:
Marc Cornellà
<
marc.cornella@live.com
>
parent
d49397a0
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
14 additions
and
0 deletions
+14
-0
README.md
plugins/git/README.md
+0
-0
git.plugin.zsh
plugins/git/git.plugin.zsh
+14
-0
No files found.
plugins/git/README.md
View file @
e8609b85
This diff is collapsed.
Click to expand it.
plugins/git/git.plugin.zsh
View file @
e8609b85
...
...
@@ -256,3 +256,17 @@ alias glum='git pull upstream master'
alias
gwch
=
'git whatchanged -p --abbrev-commit --pretty=medium'
alias
gwip
=
'git add -A; git rm $(git ls-files --deleted) 2> /dev/null; git commit --no-verify --no-gpg-sign -m "--wip-- [skip ci]"'
function
grename
()
{
if
[[
-z
"
$1
"
||
-z
"
$2
"
]]
;
then
echo
"Usage:
$0
old_branch new_branch"
return
1
fi
# Rename branch locally
git branch
-m
"
$1
"
"
$2
"
# Rename branch in origin remote
if
git push origin :
"
$1
"
;
then
git push
--set-upstream
origin
"
$2
"
fi
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment