mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-23 09:42:07 +02:00
23 lines
458 B
Markdown
23 lines
458 B
Markdown
# git push
|
|
|
|
> Push commits to a remote repository
|
|
|
|
- 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}}`
|
|
|
|
- Publish tags
|
|
|
|
`git push --tags`
|