Skip to content

Instantly share code, notes, and snippets.

@stasm
Created September 23, 2012 09:52
Show Gist options
  • Save stasm/3769540 to your computer and use it in GitHub Desktop.
Save stasm/3769540 to your computer and use it in GitHub Desktop.
copyedits
git clone git://github.com/jcarpenter/gaia.git
cd gaia
git remote add upstream https://github.com/mozilla-b2g/gaia
git pull upstream master
# create the 'copyedits' branch locally
git checkout -b copyedits
#...edit the files...
# commit the changes to the 'copyedits' branch
git add <files you have changed>
git commit -m "Copy clean up for app X"
# push the 'copyedits' branch to your fork
# you can do this multiple times before submitting the final pull request
git push origin copyedits
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment