Formatted all pages according to guidelines.

This commit is contained in:
Ruben Vereecken
2016-01-07 18:31:27 +01:00
parent efa4cbd4de
commit 066582e8ea
284 changed files with 1338 additions and 1364 deletions

View File

@@ -1,23 +1,23 @@
# git push
> Push commits to a remote repository
> Push commits to a remote repository.
- Publish local changes on a remote branch
- Publish local changes on a remote branch:
`git push {{REMOTE-NAME}} {{LOCAL-BRANCH}}`
- Publish local changes on a remote branch of different name
- Publish local changes on a remote branch of different name:
`git push {{REMOTE-NAME}} {{LOCAL-BRANCH}}:{{REMOTE-BRANCH}}`
- Remove remote branch
- Remove remote branch:
`git push {{REMOTE-NAME}} :{{REMOTE-BRANCH}}`
- Remove remote branches which don't exist locally
- Remove remote branches which don't exist locally:
`git push --prune {{REMOTE-NAME}}`
- Publish tags
- Publish tags:
`git push --tags`