X-Git-Url: https://git.distorted.org.uk/~mdw/stgit/blobdiff_plain/575a7e7cb31c21fcf13aa7622200496161286d10..aa01a285716ffb29a62cd7d2ef5663fa2b73f568:/stgit/git.py diff --git a/stgit/git.py b/stgit/git.py index 56374bc..7a5c9e4 100644 --- a/stgit/git.py +++ b/stgit/git.py @@ -214,29 +214,36 @@ def local_changes(): """ return len(__tree_status()) != 0 +# HEAD value cached +__head = None + def get_head(): - """Returns a string representing the HEAD + """Verifies the HEAD and returns the SHA1 id that represents it """ - return read_string(head_link) + global __head + + if not __head: + __head = rev_parse('HEAD') + return __head def get_head_file(): """Returns the name of the file pointed to by the HEAD link """ - # valid link - if os.path.islink(head_link) and os.path.isfile(head_link): - return os.path.basename(os.readlink(head_link)) - else: - raise GitException, 'Invalid .git/HEAD link. Git tree not initialised?' + return os.path.basename(_output_one_line('git-symbolic-ref HEAD')) def __set_head(val): """Sets the HEAD value """ - write_string(head_link, val) + global __head + + __head = val + if __run('git-update-ref HEAD', [val]) != 0: + raise GitException, 'Could not update HEAD to "%s".' % val def rev_parse(git_id): - """Parse the string and return an SHA1 id + """Parse the string and return a verified SHA1 id """ - return _output(['git-rev-parse', git_id]).strip() + return _output_one_line(['git-rev-parse', '--verify', git_id]) def add(names): """Add the files or recursively add the directory contents