Skip to content

Instantly share code, notes, and snippets.

@borgified
Created January 28, 2014 01:15
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 borgified/8660719 to your computer and use it in GitHub Desktop.
Save borgified/8660719 to your computer and use it in GitHub Desktop.
updating my fork of iron-io repo
#the location of my local repo of my forked iron-io repo in github
cd ~/scripts/docs
#get to the local gh-pages branch
git checkout gh-pages
#fetch and merge our local gh-pages with iron-io's gh-pages branch
git pull ironio gh-pages
#push to my fork in github of iron-io's gh-pages
git push origin gh-pages
#now ready to create new issue branch for fixing issues
git checkout -b issue###
#save your work
git add <files>
git commit -a
#push the issue### branch to my github fork of iron-io's gh-pages
git push origin issue###
#goto github.com and click on the green pull request button in my fork of iron-io's gh-pages
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment