git: How do I recursively add all files in a directory subtree that match a glob pattern?

GitGlobGit Add

Git Problem Overview


I have several .screen files inside /xxx/documentation and its subdirectories that are already tracked by Git.

After modifying many of these screen files, I run git add documentation/\\*.screen—as indicated by the first example in git-add's documentation—to stage these files, but the command fails:

fatal: pathspec 'documentation/*.screen' did not match any files

Is my command bad, or does git have a bug?

Git Solutions


Solution 1 - Git

It's a bug in the documentation. Quote the asterisk with

$ git add documentation/*.screen

or

$ git add 'documentation/*.screen'

to get the behavior you want.

If instead you want to add files in the current directory only, use

$ git add *.screen

UPDATE: I submitted a patch that corrects the issue, now fixed as of version 1.6.6.2.

Solution 2 - Git

I've tried the accepted answer, but it didn't worked for me.. so here's mine just in case someone wants to get it's job done without spending time in dissecting various aspects that might cause the problem:

find documentation -name "*.screen" | xargs git add -u

//the -u option to git-add adds to index just the files that were previously tracked and modified

Solution 3 - Git

You told the shell to look for *.screen (i.e. exactly this string - which doesn't exist - instead of what you want "all files that end with .screen). Omit the \\ so the shell can do the file name expansion for you.

Solution 4 - Git

This what I just used for a similar problem of git adding all the files in a directory:

find . | sed "s/\(.*\)/\"\1\"/g" | xargs git add 

For the original question the command would be:

find -name "*.screen" | sed "s/\(.*\)/\"\1\"/g" | xargs git add 

Note that I'm dealing with the case where a fully specified file name contains spaces. Thats why my answer. Edit the portion before the first | in order to pick out different files to add.

Solution 5 - Git

git add *.java works for me to add recursively all the java files

Solution 6 - Git

try

git add ./documentation/*.screen

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionPhương NguyễnView Question on Stackoverflow
Solution 1 - GitGreg BaconView Answer on Stackoverflow
Solution 2 - GitFlueras BogdanView Answer on Stackoverflow
Solution 3 - GitAaron DigullaView Answer on Stackoverflow
Solution 4 - GitBarnaby DawsonView Answer on Stackoverflow
Solution 5 - GitJackieView Answer on Stackoverflow
Solution 6 - GitkubiView Answer on Stackoverflow