I use the following steps (assuming you have a github account, familiar
with Git and have created a Vim repository clone in your account).
$ mkdir spellcheck
$ cd spellcheck
$ cd vim
$ git checkout -b spellcheck
$ git push origin spellcheck
$ git branch --set-upstream-to=origin/spellcheck spellcheck
Make the changes to the source code, build the image and test.
Note that I use separate branches to work on different sets of changes.
After making and testing the changes, you can push them to github
using:
$ git add <list of files>
$ git commit -m <comment>
$ git push origin spellcheck
go to the spellcheck branch and click on the "New pull request" button.
This will create a pull request and run the various tests. Check
the following pages for the status of the tests:
Regards,
Yegappan