Re: [git-users] Re: git commit not doing anything

2010-09-10 Thread David Doria
On Thu, Sep 9, 2010 at 10:38 PM, Jeffrey  wrote:
> Are you sure you don't for some reason have a hook which silently
> fails? Bizarre, but possible...

Ah man, that was it! Git should definitely FIRST say "Hook failed"
unconditionally, then allow for the hook error messages. That was so
frustrating...

Thanks though!

-- 
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-us...@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] Re: git commit not doing anything

2010-09-09 Thread Jeffrey
Are you sure you don't for some reason have a hook which silently
fails? Bizarre, but possible...

On Sep 9, 8:57 am, David Doria  wrote:
> On Tue, Aug 31, 2010 at 11:28 AM, E.J. Hassick  wrote:
> > Is this just happening in a specific project of yours or in others too?
>
> It's happening again, this time in a different project! The way I
> fixed it last time was to just delete the local files and re-pull from
> the repo. Surely I am just doing something silly... any thoughts?
>
> David

-- 
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-us...@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.



Re: [git-users] Re: git commit not doing anything

2010-09-09 Thread David Doria
On Tue, Aug 31, 2010 at 11:28 AM, E.J. Hassick  wrote:
> Is this just happening in a specific project of yours or in others too?

It's happening again, this time in a different project! The way I
fixed it last time was to just delete the local files and re-pull from
the repo. Surely I am just doing something silly... any thoughts?

David

-- 
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-us...@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.



Re: [git-users] Re: git commit not doing anything

2010-08-31 Thread E.J. Hassick
Is this just happening in a specific project of yours or in others too?

On Tue, Aug 31, 2010 at 9:13 AM, David Doria  wrote:

> Yep, I tried that too (though it should be equivalent to the
> git add .
> git commit
>
> that I've been trying.
>
> I even tried
>
> git commit -v -m "test commit"
>
> and nothing is displayed (even with the verbose output!)
>
> This is driving me crazy... any more thoughts?
>
> On Aug 31, 1:09 am, iñigo medina  wrote:
> > Hi David,
> >
> > did you try with git commit -a?
> >
> > iñ
> >
> >
> >
> > > I have some staged files:
> >
> > > [dor...@localhost VTK-GraphColors]$ git status
> > > # On branch VTK-GraphColors
> > > # Changes to be committed:
> > > # (use "git reset HEAD ..." to unstage)
> > > #
> > > # modified: Infovis/vtkApplyColors.cxx
> > > # modified: Infovis/vtkApplyColors.h
> > > # modified: Views/vtkRenderedGraphRepresentation.cxx
> > > # modified: Views/vtkRenderedGraphRepresentation.h
> >
> > > but when I try to commit:
> >
> > > [dor...@localhost VTK-GraphColors]$ git commit -m "ENH: allow
> > > passthrough coloring"
> >
> > > nothing happens. There are no errors, it simply doesn't commit the
> > > files. Any clues?
> >
> > > Thanks,
> >
> > > David
> >
> > > --
> > > 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-us...@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.
> >
> >
> >
> >
>
> --
> 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-us...@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.
>
>

-- 
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-us...@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] Re: git commit not doing anything

2010-08-31 Thread David Doria
Yep, I tried that too (though it should be equivalent to the
git add .
git commit

that I've been trying.

I even tried

git commit -v -m "test commit"

and nothing is displayed (even with the verbose output!)

This is driving me crazy... any more thoughts?

On Aug 31, 1:09 am, iñigo medina  wrote:
> Hi David,
>
> did you try with git commit -a?
>
> iñ
>
>
>
> > I have some staged files:
>
> > [dor...@localhost VTK-GraphColors]$ git status
> > # On branch VTK-GraphColors
> > # Changes to be committed:
> > # (use "git reset HEAD ..." to unstage)
> > #
> > # modified: Infovis/vtkApplyColors.cxx
> > # modified: Infovis/vtkApplyColors.h
> > # modified: Views/vtkRenderedGraphRepresentation.cxx
> > # modified: Views/vtkRenderedGraphRepresentation.h
>
> > but when I try to commit:
>
> > [dor...@localhost VTK-GraphColors]$ git commit -m "ENH: allow
> > passthrough coloring"
>
> > nothing happens. There are no errors, it simply doesn't commit the
> > files. Any clues?
>
> > Thanks,
>
> > David
>
> > --
> > 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-us...@googlegroups.com.
> > To unsubscribe from this group, send email to
>
> git-users+unsubscr...@googlegroups.com .com>
> .> For more options, visit this group at
>
> http://groups.google.com/group/git-users?hl=en.
>
>
>
>

-- 
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-us...@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.