* RFC: Running StGIT in subdirectories
@ 2006-01-27 6:33 Pavel Roskin
0 siblings, 0 replies; only message in thread
From: Pavel Roskin @ 2006-01-27 6:33 UTC (permalink / raw)
To: Catalin Marinas, git
Hello!
This was intended as a patch, but I feel it needs to be discussed.
StGIT, as it stands now, is quite unaware of the fact that the current
directory may not match the top-level directory of the repository.
It works in most cases because git takes care of the issue, or because
StGIT is operating on repository wide objects (patches). But in some
cases, StGIT fails or produces unexpected results. My first encounter
was "stg refresh":
[proski@dv doc]$ stg refresh
Refreshing patch "docs"...error: doc/doc/Makefile: does not exist and --remove not passed
fatal: Unable to process file doc/Makefile
stg refresh: Failed git-update-index
What's worse is "stg export" creating patches that only cover changes
under the current directory. I think the patches should be complete
unless the user requests otherwise.
Fortunately, it seems that most commands are doing the right thing, and
some commands are actually useful in subdirectories (e.g. add and rm).
I think it should be possible to fix the remaining commands or (in cases
when user's expectations are unclear) to disable them in subdirectories,
at least by default.
Here's the patch for "stg refresh". It also introduces a function to
get the relative patch of the current directory.
Since the output of git-update-index uses path from the top, the path to
the current directory needs to be stripped from it. I wonder if it's a
bug in git-update-index, by the way.
I'm a Python beginner. I think there should be a way to avoid creating
a new list fsrel. Also, I only want to replace the first occurrence of
rel_path, and only if it's in the beginning of the filename. Maybe I
need regex for that? Or maybe slicing would work?
Until it's done properly, it's not a 100% correct patch, but it's
working for me.
---
[PATCH] Add support for running "stg refresh" in subdirectories.
git-diff-index uses full path from the top of the repository in all
filenames it prints. The path to the current directory needs to be
stripped.
Only files under the current directory will be refreshed.
---
stgit/git.py | 16 ++++++++++++++--
1 files changed, 14 insertions(+), 2 deletions(-)
diff --git a/stgit/git.py b/stgit/git.py
index 582e803..045866e 100644
--- a/stgit/git.py
+++ b/stgit/git.py
@@ -90,6 +90,17 @@ def get_base_dir():
else:
return _output_one_line('git-rev-parse --git-dir')
+__rel_path = None
+
+def get_rel_path():
+ """Return path of the current directory relative to the top
+ """
+ global __rel_path
+
+ if not __rel_path:
+ __rel_path = _output_one_line('git-rev-parse --show-prefix')
+ return __rel_path
+
def get_commit(id_hash):
"""Commit objects factory. Save/look-up them in the __commits
dictionary
@@ -207,8 +218,9 @@ def __tree_status(files = None, tree_id
# the rest
for line in _output_lines(['git-diff-index', tree_id] + files):
fs = tuple(line.rstrip().split(' ',4)[-1].split('\t',1))
- if fs[1] not in conflicts:
- cache_files.append(fs)
+ fsrel = (fs[0], fs[1].replace(get_rel_path(), ''))
+ if fsrel[1] not in conflicts:
+ cache_files.append(fsrel)
return cache_files
--
Regards,
Pavel Roskin
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2006-01-27 6:33 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-01-27 6:33 RFC: Running StGIT in subdirectories Pavel Roskin
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).