summaryrefslogtreecommitdiff
path: root/lib/git/objects/submodule.py
diff options
context:
space:
mode:
Diffstat (limited to 'lib/git/objects/submodule.py')
-rw-r--r--lib/git/objects/submodule.py16
1 files changed, 0 insertions, 16 deletions
diff --git a/lib/git/objects/submodule.py b/lib/git/objects/submodule.py
deleted file mode 100644
index 1f571a48..00000000
--- a/lib/git/objects/submodule.py
+++ /dev/null
@@ -1,16 +0,0 @@
-import base
-
-__all__ = ("Submodule", )
-
-class Submodule(base.IndexObject):
- """Implements access to a git submodule. They are special in that their sha
- represents a commit in the submodule's repository which is to be checked out
- at the path of this instance.
- The submodule type does not have a string type associated with it, as it exists
- solely as a marker in the tree and index"""
-
- # this is a bogus type for base class compatability
- type = 'submodule'
-
- # TODO: Add functions to retrieve a repo for the submodule, to allow
- # its initiailization and handling