Posts

Showing posts from September, 2018

Git, Create A Branch And Publish To Remote

Create your own local branch and remote publish git checkout -b my_branch_name --no-track origin/master make and commit changes git push -u origin my_branch_name