Re: [git-users] git-bisect creating modified files?

2012-10-05 Thread Philip Oakley

  - Original Message - 
  From: Manu Sridharan 
  To: git-users@googlegroups.com 
  Sent: Friday, October 05, 2012 4:23 PM
  Subject: [git-users] git-bisect creating modified files?


  Hi all,

  I'm having a strange issue with git-bisect, where the bisection process seems 
to create file modifications that prevent the process from continuing.  I 
posted the details on stackoverflow, but didn't get any answers:

  http://stackoverflow.com/questions/12694952/git-bisect-creating-modified-files

  Any advice?  I'm happy to post the details here directly if that's easier.
Using your example as a 'who done it' mystery, and reading the man page in some 
detail, I think that what is happening is two issues:

First (which you may be aware of) is that the bisect command sequence requires 
you to manually go off and perform the tests of that checked out revision 
[compile, execute, test etc.] and then tell git if it was good or bad (so that 
git then knows which way to go within the bisect process). [Or you can use a 
'run' script]

Second, you have checked out a particular revision, which is different from the 
original revision. Now git has decided that, given it's updated state, that it 
should flag as a status that those files are 'modified', which suggests to me 
that something else has changed, such as the .gitignore file, or an excludes 
file, so that git status is using a different basis for its testing. Perhaps 
those file types are no longer in the revision's gitignore, so git wants to 
tell you that it sees them and that they are different (look new) from its 
expectation. 

Do a 'git diff' on those files to see what git thinks they used to be.

Philip



Thanks,
Manu

-- 
You received this message because you are subscribed to the Google Groups "Git 
for human beings" group.
To post to this group, send email to git-users@googlegroups.com.
To unsubscribe from this group, send email to 
git-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/git-users?hl=en.



[git-users] git-bisect creating modified files?

2012-10-05 Thread Manu Sridharan
Hi all,

I'm having a strange issue with git-bisect, where the bisection process 
seems to create file modifications that prevent the process from 
continuing.  I posted the details on stackoverflow, but didn't get any 
answers:

http://stackoverflow.com/questions/12694952/git-bisect-creating-modified-files

Any advice?  I'm happy to post the details here directly if that's easier.

Thanks,
Manu

-- 
You received this message because you are subscribed to the Google Groups "Git 
for human beings" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/git-users/-/fuK8SGY_Dp4J.
To post to this group, send email to git-users@googlegroups.com.
To unsubscribe from this group, send email to 
git-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/git-users?hl=en.