up vote 1 down vote favorite
share [g+] share [fb]

I want to add all the files in the current directory to git:

git add .
error: open(".mysql_history"): Permission denied
fatal: unable to index file .mysql_history

That's fine. That file happens to be in this directory and owned by root. I want to add all other files. Is there a way to do that without having to manually add each file by hand?

I know that I could add the file to exclude or .gitignore, but I'd like to have it just ignore things based on permissions (there's a good chance other files like this will end up in the directory, and adding them to .gitignore all the time in a pain).

link|improve this question

54% accept rate
feedback

3 Answers

up vote 3 down vote accepted

Use git add --ignore-errors .

This will still give an error for the unreadable file(s), but not a fatal one. The other files will be added.

link|improve this answer
This works, but only on git 2.6 and up it seems :) – singpolyma Dec 16 '08 at 20:16
feedback

Would it help if you added that file to your .gitignore file? So all other files would be versioned and that file would get ignored (unless you need it).

link|improve this answer
feedback

Just exclude the file. You can add .mysql_history to a .gitignore file, or add it to .git/info/exclude.

Adding an entry to .gitignore will propagate the setting with the repo (since .gitignore is stored with the repo); adding it to .git/info/exclude makes it "personal" because this file is not propagated with the repo. Either way, .mysql_history will be ignored by git-add and friends.

You can read more about ignoring files with Git on this man page.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.