зеркало из
https://github.com/iharh/notes.git
synced 2025-10-30 21:26:09 +02:00
12 строки
282 B
Plaintext
12 строки
282 B
Plaintext
git push --set-upstream <remote-name> <branch-at-remote-to-push-to>
|
|
|
|
git push <remote-name> <local-branch>
|
|
|
|
git push :<branch-name>
|
|
delete a remote branch
|
|
|
|
samples
|
|
to overwrite remote branch (develop) with a local one
|
|
git push origin +feature/LANG-2160:develop
|
|
+ - to force
|