Fri 04 Aug 2017 04:57:00 PM UTC, comment #1:
Hello Nate,
Thanks again for your work on this endeavor.
I've pulled your changes from the Github repo that you mentioned into the "webext" branch here on Savannah.
The easiest way for you to add future changes yourself is as follows:
1. Create a Savannah account
2. Join the LibreJS group
3. Create a new clone of the LibreJS git repo by doing:
git clone username@git.sv.gnu.org:/srv/git/librejs.git
4. Fetch all of the remote git branches by doing
git fetch origin
5. Checkout the "webext" branch
git checkout webext
6. Create a feature/working branch from the webext branch
git checkout -b username_webext_featurename
7. Make your changes, commit them to your feature branch, and push your feature branch
git add -p
git commit
git push origin username_webext_featurename
8. Then, we can review your changes together and merge your feature branch into the "webext" branch.
|