Created
September 23, 2012 09:52
-
-
Save stasm/3769540 to your computer and use it in GitHub Desktop.
copyedits
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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