Auto-tools/Projects/Mozmill/RepoSetup: Difference between revisions

No edit summary
Line 12: Line 12:
<pre>git remote add mozauto git@github.com:mozautomation/mozmill.git</pre>
<pre>git remote add mozauto git@github.com:mozautomation/mozmill.git</pre>


Now you can update from your own fork:
Here's how to stay up to date with the remote mozautomation repository:
<pre>git pull origin master</pre>
<pre>
 
git pull origin master               // Pulls changes from your github fork to your local machine
And you can update from the remote mozautomation repo's master:
git pull mozauto master               // Pulls changes from mozauto to your local machine
<pre>git pull mozauto master</pre>
git push origin master               // Pushes any changes from mozauto back up to your github fork
 
</pre>
And if there are changes that came down from the mozautomation repo, you can push them up to your fork:
Now you're in sync.  Time to get stuff done.
<pre>git push origin master</pre>


= Setting up for Development on 1.4.2 =
= Setting up for Development on 1.4.2 =
Confirmed users
3,816

edits