From: Michelle S O. <ms...@ny...> - 2008-07-20 18:28:52
|
Hey javagit folks, When running the statusAll method on GitStatus I'm not getting back the expected result - a modified file is not being detected. Here's the output I get from actually running git status on the directory: # On branch master # Changed but not updated: # (use "git add <file>..." to update what will be committed) # # modified: src/hello.plugin # # Untracked files: # (use "git add <file>..." to include in what will be committed) # # .classpath # .project # bin/ The result that I get is that I have 3 untracked files (correct) but no modified files at all. I stepped through in debug and it looks like the method matchModifiedFilePattern in CliGitStatus is returning false when called with the line containing '# modified: src/hello.plugin'. Let me know if I can provide any additional info to help. Thanks, Michelle |
From: Michael S. <mic...@cs...> - 2008-07-21 15:21:42
|
Michelle, Can you log this as a defect on sourceforge? ... Someone from the javagit team, please assign this defect to yourself and fix it. :) Thanks, Michael On Sun, Jul 20, 2008 at 2:28 PM, Michelle S Osborne <ms...@ny...> wrote: > Hey javagit folks, > > When running the statusAll method on GitStatus I'm not getting back the expected result - a modified file is not being detected. Here's the output I get from actually running git status on the directory: > > # On branch master > # Changed but not updated: > # (use "git add <file>..." to update what will be committed) > # > # modified: src/hello.plugin > # > # Untracked files: > # (use "git add <file>..." to include in what will be committed) > # > # .classpath > # .project > # bin/ > > The result that I get is that I have 3 untracked files (correct) but no modified files at all. I stepped through in debug and it looks like the method matchModifiedFilePattern in CliGitStatus is returning false when called with the line containing '# modified: src/hello.plugin'. > > Let me know if I can provide any additional info to help. > > Thanks, > Michelle > > ------------------------------------------------------------------------- > This SF.Net email is sponsored by the Moblin Your Move Developer's challenge > Build the coolest Linux based applications with Moblin SDK & win great prizes > Grand prize is a trip for two to an Open Source event anywhere in the world > http://moblin-contest.org/redirect.php?banner_id=100&url=/ > _______________________________________________ > Gitclipse-devel mailing list > Git...@li... > https://lists.sourceforge.net/lists/listinfo/gitclipse-devel > > |
From: Michelle S O. <ms...@ny...> - 2008-07-22 00:29:41
|
Gurdeep, Sorry I wasn't able to try it out sooner - I get home from work fairly late and ran into some unrelated problems building the project. I do see files register as modified now, but I'm still not getting exactly the expected response. Given the following git status output, I see 2 files come back as 'modified to commit' and 0 as 'modified not updated', rather than 1 and 1 as I would expect: **************************************************** # On branch master # Changes to be committed: # (use "git reset HEAD <file>..." to unstage) # # modified: src/Modified.java # deleted: src/Removed.java # deleted: src/RemovedNotStaged.java # # Changed but not updated: # (use "git add <file>..." to update what will be committed) # # modified: src/ModifiedNotStaged.java # # Untracked files: # (use "git add <file>..." to include in what will be committed) # # .classpath # .project # bin/ **************************************************** I'm going to go ahead and file this as a new bug report. Michelle ----- Original Message ----- From: Gurdeep Singh Dhindsa <gs...@ny...> Date: Monday, July 21, 2008 12:13 pm Subject: Re: [Javagit-users] [Gitclipse-devel] Problem with GitStatus To: Michael Schidlowsky <mic...@cs...> Cc: Michelle S Osborne <ms...@ny...>, git...@li..., jav...@li... > Hi Michelle, > > This is already fixed. I fixed it and did the release yesterday night. > I had also logged it as a bug initially in sourceforge yesterday when > you sent the mail. > > I'll be closing it once you confirm that it's working. > > thanks > Gurdeep > > ----- Original Message ----- > From: Michael Schidlowsky <mic...@cs...> > Date: Monday, July 21, 2008 11:28 am > Subject: Re: [Javagit-users] [Gitclipse-devel] Problem with GitStatus > To: Michelle S Osborne <ms...@ny...> > Cc: git...@li..., jav...@li... > > > > Michelle, > > > > Can you log this as a defect on sourceforge? > > ... > > > > Someone from the javagit team, > > > > please assign this defect to yourself and fix it. :) > > > > Thanks, > > Michael > > > > On Sun, Jul 20, 2008 at 2:28 PM, Michelle S Osborne <ms...@ny...> > wrote: > > > Hey javagit folks, > > > > > > When running the statusAll method on GitStatus I'm not getting > back > > the expected result - a modified file is not being detected. Here's > > > the output I get from actually running git status on the directory: > > > > > > # On branch master > > > # Changed but not updated: > > > # (use "git add <file>..." to update what will be committed) > > > # > > > # modified: src/hello.plugin > > > # > > > # Untracked files: > > > # (use "git add <file>..." to include in what will be committed) > > > # > > > # .classpath > > > # .project > > > # bin/ > > > > > > The result that I get is that I have 3 untracked files (correct) > but > > no modified files at all. I stepped through in debug and it looks > like > > the method matchModifiedFilePattern in CliGitStatus is returning > false > > when called with the line containing '# modified: src/hello.plugin'. > > > > > > Let me know if I can provide any additional info to help. > > > > > > Thanks, > > > Michelle > > > > > > ------------------------------------------------------------------------- > > > This SF.Net email is sponsored by the Moblin Your Move Developer's > challenge > > > Build the coolest Linux based applications with Moblin SDK & win > > great prizes > > > Grand prize is a trip for two to an Open Source event anywhere in > > > the world > > > http://moblin-contest.org/redirect.php?banner_id=100&url=/ > > > _______________________________________________ > > > Gitclipse-devel mailing list > > > Git...@li... > > > https://lists.sourceforge.net/lists/listinfo/gitclipse-devel > > > > > > > > > > ------------------------------------------------------------------------- > > This SF.Net email is sponsored by the Moblin Your Move Developer's challenge > > Build the coolest Linux based applications with Moblin SDK & win > great > > prizes > > Grand prize is a trip for two to an Open Source event anywhere in > the > > world > > http://moblin-contest.org/redirect.php?banner_id=100&url=/ > > _______________________________________________ > > Javagit-users mailing list > > Jav...@li... > > https://lists.sourceforge.net/lists/listinfo/javagit-users |