summaryrefslogtreecommitdiffstats
path: root/lib/git/branch.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/git/branch.rb')
-rw-r--r--lib/git/branch.rb11
1 files changed, 11 insertions, 0 deletions
diff --git a/lib/git/branch.rb b/lib/git/branch.rb
new file mode 100644
index 0000000..8f8953b
--- /dev/null
+++ b/lib/git/branch.rb
@@ -0,0 +1,11 @@
+module Git
+ class Branch < Path
+
+ @base = nil
+
+ def initialize(base, name)
+ @base = base
+ end
+
+ end
+end