Skip to content

Instantly share code, notes, and snippets.

@cheezedigital
Last active August 29, 2015 14:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cheezedigital/e72cc2f4260029d2fb91 to your computer and use it in GitHub Desktop.
Save cheezedigital/e72cc2f4260029d2fb91 to your computer and use it in GitHub Desktop.
workflow to date.
typically, I start the morning off with:
$ cd cls3/
move to whichever/or create branch
$ git fetch
$ git pull origin master
bundle
$ mysql.server start
$rails s
when creating a branch /pushing pulling
cls3(master)$ git fetch
cls3(master)$ git checkout -b CL-757 origin/sprint015
the checkout -b CL-757 is the story and the origin/spring015 is the branch we're branching off of.
first.
git add <file>
git commit -m <message>
git push origin <branch name>
git status?
git checkout origin/sprint015
git merge CL-757
git push origin sprint015
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment