Skip to content

How to commit changes rom local cloned version

frakkopesto edited this page Mar 30, 2013 · 3 revisions

1. Update all the changes from online to the local repository:

 $git pull origin master

2. Commit the changes that you have made locally to the online repository. Remember this online repository is my own. Not the one in vistalab.

 $git commit -am "ENH: some changes."

3. Push the changes to your online repository:

 $git push origin

4. Now go online on vistalab and make a 'pull' request from frakkopesto/vistasoft/master

Clone this wiki locally