Search

git push

Requirements
To follow this setup, it is required to have following …
No Requirements
Push [git push]
Updates remote refs using local refs, while sending objects necessary to complete the given refs.
Synopsis [git push --<synopsis>]
commands [synopsis]
YAML
복사
SourceTree
1.
Step 1
2.
Step 2
3.
Step 3
Commonly Used Commands
Default push
git push
Forcefully push
git push --force
Push new branch to remote repository
git push -u origin <branch name>
Delete remote branch
git push <remote name> --delete <branch name>

Reference