Skip to content

Instantly share code, notes, and snippets.

@mjuneja
Created September 8, 2008 14:07
Show Gist options
  • Save mjuneja/9446 to your computer and use it in GitHub Desktop.
Save mjuneja/9446 to your computer and use it in GitHub Desktop.
creating remote git branch
git push origin origin:refs/heads/new_feature_name
git fetch origin
git branch -r
git checkout --track -b new_feature_name origin/new_feature_name
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment