@Jay Thx.<div><br></div><div>@Monty I'm unable to run "<span style="color:rgb(34,34,34);font-family:arial,sans-serif;font-size:13px;background-color:rgb(255,255,255)">tox -efull", it keeps saying the command could not be located. I'm supposed to run this from the same place i run "run_tests.sh" right?</span><br>
<br><div class="gmail_quote">On Mon, Jul 2, 2012 at 2:08 PM, Jay Pipes <span dir="ltr"><<a href="mailto:jaypipes@gmail.com" target="_blank">jaypipes@gmail.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
<div class="im">On 07/02/2012 08:57 AM, Leander Bessa Beernaert wrote:<br>
> I'm developing on custom branch and haven't updated the repository for<br>
> at least 3 weeks.<br>
> Do i fetch the lastest changes like this:<br>
><br>
>     git remote update<br>
>     git checkout master<br>
>     git pull origin master<br>
><br>
>     git checkout <branch><br>
><br>
>     git pull master<br>
<br>
</div>Remember to git stash your current working changes first...<br>
<br>
# Ensure you are in your local working git branch<br>
# (not your local master)<br>
<br>
git stash --all<br>
<div class="im">git checkout master<br>
git pull<br>
</div>git checkout $WORKINGBRANCH<br>
git rebase master<br>
git stash pop<br>
<br>
and then handle any merge conflicts that may pop up.<br>
<br>
Best,<br>
-jay<br>
<br>
</blockquote></div><br></div>