git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* determine if the tree is dirty
@ 2009-11-03 18:57 Adam Mercer
  2009-11-03 19:06 ` Jeff Epler
                   ` (2 more replies)
  0 siblings, 3 replies; 5+ messages in thread
From: Adam Mercer @ 2009-11-03 18:57 UTC (permalink / raw)
  To: git

Hi

As part of a python script I need to determine if a tree has any
uncommitted changes, so far I am been using:

  # determine tree status
  status_cmd = 'git status'
  status_output = run_external_command(status_cmd,
honour_ret_code=False)[1].strip()
  if status_output.endswith('no changes added to commit (use "git add"
and/or "git commit -a")'):
    git_status = 'UNCLEAN: Some modifications not committed'
  else:
    git_status = 'CLEAN: All modifications committed'

but I feel that this relies to heavily on the porcelain and that there
should be a better way to accomplish this without relying on parsing
the output of git-status.

Does anyone know of a better way to accomplish this?

Cheers

Adam

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2009-11-03 21:06 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-11-03 18:57 determine if the tree is dirty Adam Mercer
2009-11-03 19:06 ` Jeff Epler
2009-11-03 19:19 ` Junio C Hamano
2009-11-03 19:30   ` Adam Mercer
2009-11-03 21:07 ` Markus Hitter

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).