|
@@ -431,8 +431,14 @@ def build_file_from_blob(blob, mode, target_path, honor_filemode=True):
|
|
os.chmod(target_path, mode)
|
|
os.chmod(target_path, mode)
|
|
|
|
|
|
|
|
|
|
|
|
+def validate_path_default(path):
|
|
|
|
+ """Default path validator that just checks for .git/."""
|
|
|
|
+ return not path.startswith(".git/")
|
|
|
|
+
|
|
|
|
+
|
|
def build_index_from_tree(prefix, index_path, object_store, tree_id,
|
|
def build_index_from_tree(prefix, index_path, object_store, tree_id,
|
|
- honor_filemode=True):
|
|
|
|
|
|
+ honor_filemode=True,
|
|
|
|
+ validate_path=validate_path_default):
|
|
"""Generate and materialize index from a tree
|
|
"""Generate and materialize index from a tree
|
|
|
|
|
|
:param tree_id: Tree to materialize
|
|
:param tree_id: Tree to materialize
|
|
@@ -441,6 +447,8 @@ def build_index_from_tree(prefix, index_path, object_store, tree_id,
|
|
:param object_store: Non-empty object store holding tree contents
|
|
:param object_store: Non-empty object store holding tree contents
|
|
:param honor_filemode: An optional flag to honor core.filemode setting in
|
|
:param honor_filemode: An optional flag to honor core.filemode setting in
|
|
config file, default is core.filemode=True, change executable bit
|
|
config file, default is core.filemode=True, change executable bit
|
|
|
|
+ :param validate_path: Function to validate paths to check out;
|
|
|
|
+ default just refuses filenames starting with .git/.
|
|
|
|
|
|
:note:: existing index is wiped and contents are not merged
|
|
:note:: existing index is wiped and contents are not merged
|
|
in a working dir. Suiteable only for fresh clones.
|
|
in a working dir. Suiteable only for fresh clones.
|
|
@@ -449,6 +457,8 @@ def build_index_from_tree(prefix, index_path, object_store, tree_id,
|
|
index = Index(index_path)
|
|
index = Index(index_path)
|
|
|
|
|
|
for entry in object_store.iter_tree_contents(tree_id):
|
|
for entry in object_store.iter_tree_contents(tree_id):
|
|
|
|
+ if not validate_path(entry.path):
|
|
|
|
+ continue
|
|
full_path = os.path.join(prefix, entry.path)
|
|
full_path = os.path.join(prefix, entry.path)
|
|
|
|
|
|
if not os.path.exists(os.path.dirname(full_path)):
|
|
if not os.path.exists(os.path.dirname(full_path)):
|