<div dir="ltr">Hi Bill,<div><br></div><div>There must be something very strange about your setup.  Can you</div><div>post your .git/config?</div><div><br></div><div>You shouldn't have to add "upstream" as a new remote, because</div><div>"origin" should already point to <a href="https://gitlab.kitware.com/vtk/vtk.git">https://gitlab.kitware.com/vtk/vtk.git</a></div><div><br></div><div>Also, after running SetupForDevelopment.sh, "gitlab" should be set</div><div>as a remote for your fork <a href="https://gitlab.kitware.com/lorensen/vtk.git">https://gitlab.kitware.com/lorensen/vtk.git</a></div><div><br></div><div>I can sync my fork with the vtk master without even doing a local</div><div>checkout of master:</div><div><br></div><div>git fetch origin<br></div><div>git push gitlab origin/master:master<br></div><div><br></div><div>Of course, if I wanted to checkout master, I'd use Brad's example.</div><div><br></div><div> - David</div><div><br></div><div><br></div></div><div class="gmail_extra"><br><div class="gmail_quote">On Wed, Mar 18, 2015 at 7:27 PM, Bill Lorensen <span dir="ltr"><<a href="mailto:bill.lorensen@gmail.com" target="_blank">bill.lorensen@gmail.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Your suggested method to sync my repo with the vtk repo did not work for me.<br>
<br>
This is what I needed to do:<br>
<br>
Do this once:<br>
git remote add upstream <a href="https://gitlab.kitware.com/vtk/vtk.git" target="_blank">https://gitlab.kitware.com/vtk/vtk.git</a><br>
<br>
To sync:<br>
git fetch upstream<br>
git checkout master<br>
git merge upstream/master<br>
git push<br>
<span class="im HOEnZb"><br>
<br>
<br>
On Tue, Mar 17, 2015 at 10:46 AM, Brad King <<a href="mailto:brad.king@kitware.com">brad.king@kitware.com</a>> wrote:<br>
> On 03/17/2015 01:31 PM, Bill Lorensen wrote:<br>
>> How do I keep my fork in sync with the vtk repo?<br>
><br>
> Whenever you do 'git gitlab-push' to push one of your topics<br>
> it will also fetch 'master' from the main repo and push that<br>
> to your fork along with your topic.<br>
><br>
> In general you don't need to ever reference 'master' in your<br>
> fork so it doesn't matter whether it stays updated.  If you<br>
> do want to update it manually you can do<br>
><br>
>  $ git checkout master<br>
>  $ git pull<br>
>  $ git push gitlab master<br>
><br>
> -Brad<br>
><br>
<br>
<br>
<br>
</span><span class="im HOEnZb">--<br>
Unpaid intern in BillsBasement at noware dot com<br>
</span><div class="HOEnZb"><div class="h5">_______________________________________________<br>
Powered by <a href="http://www.kitware.com" target="_blank">www.kitware.com</a><br>
<br>
Visit other Kitware open-source projects at <a href="http://www.kitware.com/opensource/opensource.html" target="_blank">http://www.kitware.com/opensource/opensource.html</a><br>
<br>
Search the list archives at: <a href="http://markmail.org/search/?q=vtk-developers" target="_blank">http://markmail.org/search/?q=vtk-developers</a><br>
<br>
Follow this link to subscribe/unsubscribe:<br>
<a href="http://public.kitware.com/mailman/listinfo/vtk-developers" target="_blank">http://public.kitware.com/mailman/listinfo/vtk-developers</a><br>
<br>
</div></div></blockquote></div><br></div>