How can I check if I have any uncommitted changes in my git repository:
- Changes added to the index but not committed
- Untracked files
from a script?
git-status seems to always return zero with git version 1.6.4.2.
|
feedback
|
|
Great timing! I wrote a blog post about exactly this a few days ago, when I figured out how to add git status information to my prompt. Here's what I do: 1) For dirty status:
2) For untracked files (Notice the --porcelain flag to "git status" which gives you nice parse-able output):
Although "git diff --shortstat" is more convenient, you can also use "git status --porcelain" for getting dirty files:
Note: The Here's what my prompt looks like (it includes the current branch name, an asterisk for "dirty", number of stashed / unmerged / unpushed branches):
I'm not sure if it's okay to link to personal blogs on SO, so I won't link to my post (which has all the details of the prompt). Let me know if you want it, and I'll follow up with the link. Edit: Here are the posts: Adding Git Status Information to your Terminal Prompt Improved Git-enabled Shell Prompt Or links straight to the code: prompt.sh and evilgit.sh | |||||||||||||
feedback
|
|
The key to reliably “scripting” Git is to use the ‘plumbing’ commands. The developers take care when changing the plumbing commands to make sure they provide very stable interfaces (i.e. a given combination of repository state, stdin, command line options, arguments, etc. will produce the same output in all versions of Git where the command/option exists). New output variations in plumbing commands can be introduced via new options, but that can not introduce any problems for programs that have already been written against older versions (they would not be using the new options, since they did not exist (or at least were not used) at the time the script was written). Unfortunately the ‘everyday’ Git commands are the ‘porcelain’ commands, so most Git users may not be familiar with with the plumbing commands. The distinction between porcelain and plumbing command is made in the main git manpage (see subsections titled High-level commands (porcelain) and Low-level commands (plumbing). To find out about uncomitted changes, you will likely need To check whether a repository has staged changes (not yet committed) use this:
To check whether a working tree has changes that could be staged:
To check whether the combination of the index and the tracked files in the working tree have changes with respect to
You also mentioned untracked files. You might mean “untracked and unignored”, or you might mean just plain “untracked” (including ugnored files). Either way, For “untracked” (will include ignored files, if present):
For “untracked and unignored”:
My first though is to just check whether these commands have output:
There is a small chance that this will translate abnormal exits from
Another idea is to use
Any of the above | |||||||||||||
feedback
|
|
Assuming you are on git 1.7.0 or later... After reading all of the answers on this page and some experimenting, I think the method that hits the right combination of correctness and brevity is:
While git allows for a lot of nuance between what's tracked, ignore, untracked but unignored, and so on, I believe the typical use case is for automating build scripts, where you want to stop everything if your checkout isn't clean. In that case, it makes sense to simulate what the programmer would do: type Then we use This command will return 1 if the working directory is clean and 0 if there are changes to be committed. You can change the | |||
|
feedback
|
|
Why not encapsulate '
That way, you can use that 'enhanced' status in your script. As 0xfe mentions in his excellent answer,
| |||||
feedback
|
|
One DIY possibility, updated to follow 0xfe's suggestion
As noted by Chris Johnsen, this only works on Git 1.7.0 or newer. | |||||||||||||||
feedback
|
diffto indicate the presence or absence of differences rather than the successful running of the command then you need to use--exit-codeor--quiet. git commands are generally very consistent with returning a zero or non-zero exit code to indicate the success of the command. – Charles Bailey Apr 17 '10 at 19:22