git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* Are these bugs?
@ 2008-08-27 23:36 Jay Soffian
  2008-08-27 23:47 ` Junio C Hamano
  0 siblings, 1 reply; 6+ messages in thread
From: Jay Soffian @ 2008-08-27 23:36 UTC (permalink / raw)
  To: Git List

1. You can't use reset in a just initialized repo:

$ mkdir testrepo
$ cd testrepo
$ echo foo > foo
$ git init
$ git add .
$ git reset
fatal: Failed to resolve 'HEAD' as a valid ref.

In the real-world, I had initialized a new repository and realized I'd
staged extra files I didn't want. I was going to "git reset" then
re-add the specific files I wanted, but that obviously failed. I
worked around this by using "git rm --cached" to get rid of what I
didn't want.

I understand why "git reset" failed, but at best the error message is
confusing to a new user.

2. "git add --ignore-errors" doesn't work with ignored files:

$ mkdir testrepo
$ cd testrepo
$ git init
Initialized empty Git repository in /Users/jay/testrepo/.git/
$ echo foo >> .git/info/exclude
$ echo foo > foo
$ echo bar > bar
$ git add --ignore-errors foo bar
The following paths are ignored by one of your .gitignore files:
foo
Use -f if you really want to add them.
fatal: no files added

Now you may ask "why are you specifying foo if you don't want to add
it?" In the real-world I was generating the list to "git add" with
xargs and it was quite a long list. It was easiest to filter out what
I didn't want through .git/info/exclude. But I ended up having to "...
| grep -v <stuff I don't want> | xargs git add".

So I think preferable would be: "Use -f if you really want to add them
or --ignore errors to continue anyway."

$ git version
git version 1.6.0.176.g8698c

Thoughts?

j.

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2008-08-28  8:45 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-08-27 23:36 Are these bugs? Jay Soffian
2008-08-27 23:47 ` Junio C Hamano
2008-08-28  1:04   ` Stephan Beyer
2008-08-28  1:20     ` Junio C Hamano
2008-08-28  8:44       ` Benny Halevy
     [not found]   ` <76718490808271825j68ac6abch406a8e12b5849b1a@mail.gmail.com>
2008-08-28  1:26     ` Jay Soffian

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).