diff --git a/pages/common/git-push.md b/pages/common/git-push.md index cf6701e5a3..1f6a8d7817 100644 --- a/pages/common/git-push.md +++ b/pages/common/git-push.md @@ -2,10 +2,18 @@ > Push commits to a remote repository -- Publish local changes on a remote location +- Publish local changes on a remote branch `git push {{REMOTE-NAME}} {{LOCAL-BRANCH}}` +- Publish local changes on a remote branch of different name + +`git push {{REMOTE-NAME}} {{LOCAL-BRANCH}}:{{REMOTE-BRANCH}}` + +- Remove remote branch + +`git push {{REMOTE-NAME}} :{{REMOTE-BRANCH}}` + - Remove remote branches which don't exist locally -`git push --prune {{REMOTE-NAME}}` \ No newline at end of file +`git push --prune {{REMOTE-NAME}}`