Skip to content

Instantly share code, notes, and snippets.

@ajaysjournal
Created March 25, 2017 04:31
Show Gist options
  • Save ajaysjournal/9e225c791b6b3cc59c1b3994ab50afc1 to your computer and use it in GitHub Desktop.
Save ajaysjournal/9e225c791b6b3cc59c1b3994ab50afc1 to your computer and use it in GitHub Desktop.
git-flow commands
  1. git clone <clone url
  2. git remote add upstream <remote url>
  3. git fetch upstream
  4. git pull --rebase upstream master
  5. git checkout -b feature-1 master
  6. git pull --rebase upstream master
  7. git push -u origin feature-1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment