Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is there a way to use a command like git ls-files to show only untracked files?

The reason I'm asking is because I use the following command to process all deleted files:

git ls-files -d | xargs git rm

I'd like something similar for untracked files:

git some-command --some-options | xargs git add

I was able to find the -o option to git ls-files, but this isn't what I want because it also shows ignored files. I was also able to come up with the following long and ugly command:

git status --porcelain | grep '^??' | cut -c4- | xargs git add

It seems like there's got to be a better command I can use here. And if there isn't, how do I create custom git commands?

share|improve this question
Could you elaborate why do you need git ls-files -d | xargs git rm? – takeshin Sep 27 '10 at 6:37
That removes all files that git notices are missing. My question was about how to do a related operation - add all files that git isn't currently tracking. I would usually do both of these after renaming, combining, and/or splitting my code files. – jnylen Sep 27 '10 at 6:52

5 Answers

up vote 64 down vote accepted

To list untracked files try:

git ls-files --other --exclude-standard

Nice alias for adding untracked files:

au = !git add $(git ls-files -o --exclude-standard)
share|improve this answer
1  
Perfect! What does the ! mean at the beginning of the alias line, or where is that documented? – jnylen Sep 27 '10 at 6:31
1  
@jnylen: ! runs bash command so you could use $(...) – takeshin Sep 27 '10 at 6:35
git help config – Dustin Sep 27 '10 at 17:35

If you just want to remove untracked files, do this:

git clean -df

add x to that if you want to also include specifically ignored files. I use git clean -dfx a lot throughout the day.

You can create custom git by just writing a script called git-whatever and having it in your path.

share|improve this answer
It's much more common that I want to add all untracked files (for example, after I move some things around). In any case, thanks for the tip about custom commands. Where is that mechanism documented? – jnylen Sep 27 '10 at 6:27
Just do git add -A or git add -u (depending on which makes more sense to you) – Dustin Sep 27 '10 at 17:34

The accepted answer crashes on filenames with space. I cannot comment on it (low stackoverflow score so far), and I'm at this point not sure how to update the alias command, so I'll put the improved version here:

git ls-files -z -o --exclude-standard | xargs -0 git add
share|improve this answer

git add -A -n will do what you want. -A adds all untracked files to the repo, -n makes it a dry-run where the add isn't performed but the status output is given listing each file that would have been added.

share|improve this answer

I think this will so the same thing as the original poster intended:

git add .

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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