Skip to content

Instantly share code, notes, and snippets.

@gringoh
Created May 8, 2020 11:37
Show Gist options
  • Save gringoh/36d031117613626cc82cea155f9b5fe6 to your computer and use it in GitHub Desktop.
Save gringoh/36d031117613626cc82cea155f9b5fe6 to your computer and use it in GitHub Desktop.
[git: Push local branch] #git

Pull local branch to origin

Create a new branch:

git checkout -b feature_branch_name

Edit, add and commit your files.

Push your branch to the remote repository:

git push -u origin feature_branch_name
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment