Git development
 help / color / mirror / Atom feed
From: Linus Torvalds <torvalds@linux-foundation.org>
To: Marc Haber <mh+git@zugschlus.de>
Cc: git@vger.kernel.org
Subject: Re: How to check repository/working tree status from a script
Date: Tue, 19 May 2009 09:29:08 -0700 (PDT)	[thread overview]
Message-ID: <alpine.LFD.2.01.0905190920051.3301@localhost.localdomain> (raw)
In-Reply-To: <alpine.LFD.2.01.0905190915050.3301@localhost.localdomain>



On Tue, 19 May 2009, Linus Torvalds wrote:
> 
> And if what you want to know about is whether there are _new_ files you 
> might want to check, then you need a third check: 'git ls-files'. You 
> won't see it in the error code, but you can do
> 
> 	others=$(git ls-files -o --exclude-standard)
> 
> and then check it 'others' is empty or not.

Actually, you can use 'git ls-files' to also list files that are changed 
wrt the index, so then you can drop the 'git diff' thing.

IOW, something like this:

	# any staged changes (ready to commit)
	git diff --quiet --staged || echo Staged changes

	# any changes wrt the index (not staged)
	others=$(git ls-files --exclude-standard -o -d -m -u)
	[ -z "$others" ] || echo "Other changes"

should do it.

If you want more specificity wrt the "Other changes", you can add the "-t" 
flag to git ls-files and parse the output to see whether the listed files 
were just unknown (ie new files): '?', changed: 'C', removed: 'R' or need 
to be merged: 'M'

Of course, 'git diff [--staged]' is needed if you actually want to know 
some "deeper" patterns about _how_ things were changed. IOW, if you want 
to know about renames/copies, you need to use 'git diff -M/C' to get that 
kind of information.

			Linus

  reply	other threads:[~2009-05-19 16:29 UTC|newest]

Thread overview: 15+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2009-05-19 14:35 How to check repository/working tree status from a script Marc Haber
2009-05-19 15:34 ` Tony Finch
2009-05-19 16:00   ` Marc Haber
2009-05-19 16:16     ` Tony Finch
2009-05-20 14:28       ` Marc Haber
2009-05-19 16:18     ` Linus Torvalds
2009-05-19 16:29       ` Linus Torvalds [this message]
2009-05-20 14:27         ` Marc Haber
2009-05-20 11:10       ` Marc Haber
2009-05-20 11:19         ` Santi Béjar
2009-05-20 11:32         ` Johannes Sixt
2009-05-20 14:29           ` Marc Haber
2009-05-21 13:24 ` Marc Haber
2009-05-21 15:37   ` Jeff King
2009-05-23 20:39     ` Marc Haber

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=alpine.LFD.2.01.0905190920051.3301@localhost.localdomain \
    --to=torvalds@linux-foundation.org \
    --cc=git@vger.kernel.org \
    --cc=mh+git@zugschlus.de \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox