[git-users] Re: Using Git to bisect Wine

2010-01-04 Thread fester225
On Dec 27 2009, 5:49 pm, Konstantin Khomoutov khomou...@gmail.com wrote: On Dec 28, 2:29 am, fester225 fester...@gmail.com wrote: I'm attempting to use Git (1.6.3.3) to bisect Wine. When I ran: git bisect start, I got: fatal: invalid reference: master. How do I get rid of the error?

[git-users] git merge order matters?

2010-01-04 Thread Phil
If I have two branches master and slave, for example, does it matter if i run merge from master or from slave? ie will the merge have different results if I run git checkout master git merge slave VS git checkout slave git merge master -- You received this message because you are

Re: [git-users] git merge order matters?

2010-01-04 Thread Michael P. Soulier
On Mon, Jan 4, 2010 at 6:53 AM, Phil phuibon...@gmail.com wrote: If I have two branches master and slave, for example, does it matter if i run merge from master or from slave? ie will the merge have different results if I run git checkout master git merge slave VS git checkout slave

Re: [git-users] Re: Using Git to bisect Wine

2010-01-04 Thread fester
d...@dan-linux:~/wine-git$ git branch -a * (no branch) remotes/origin/master remotes/origin/stable d...@dan-linux:~/wine-git$ git checkout master remotes/origin/master error: pathspec 'master' did not match any file(s) known to git. error: pathspec 'remotes/origin/master' did not match any

Re: [git-users] Re: Using Git to bisect Wine

2010-01-04 Thread fester
d...@dan-linux:~/wine-git$ git checkout -b master remotes/origin/master Previous HEAD position was 1c7c406... crypt32: Correct spec entries for certificate stores. Branch master set up to track remote branch master from origin. Switched to a new branch 'master' I'm going to have to start