public
Description: The Git TextMate Bundle
Homepage: http://tim.theenchanter.com/
Clone URL: git://github.com/timcharper/git-tmbundle.git
Fix: Bundle was crashing when trying to get the branch name of a submodule 
that hadn't been checked out yet
timcharper (author)
Tue Jul 15 10:23:42 -0700 2008
commit  196102def7e4f5c442bc5cdb6ef0164c89877efe
tree    f611e4068085cc53441c3b43a648e77bd739aa0a
parent  a58c7355bf37482ec5400b1877778bb872fec4d7
...
 
 
 
 
 
 
 
 
 
1
2
3
...
1
2
3
4
5
6
7
8
9
10
11
12
0
@@ -1,3 +1,12 @@
0
+Release 1.6.4 [2008-07-15]
0
+ - Fix: Bundle was crashing when trying to get the branch name of a submodule that hadn't been checked out yet
0
+
0
+Release 1.6.3 [2008-06-13]
0
+ - Some fixes to ruby-git internals
0
+ - Logging enabled to show executed git commands in debug mode - touch the file Support/DEBUG to turn on logging.
0
+ - Fixed regression with Git#auto_add_rm - was causing merge conflicts to not properly work when dealing with delete/modify conflicts.
0
+ - Fixed regression in stash changes command to properly ignore files again.
0
+
0
 Release 1.6.2 [2008-06-05]
0
  - "Apply Stash" was changed to "Pop Stash"
0
  
...
1
2
 
3
4
5
...
1
 
2
3
4
5
0
@@ -1,5 +1,5 @@
0
 The Git Textmate Bundle.
0
-Version 1.6.2 (released June 5, 2008)
0
+Version 1.6.4 (released June 13, 2008)
0
 
0
 
0
 <h2>Installation</h2>
...
94
95
96
 
 
97
98
99
...
94
95
96
97
98
99
100
101
0
@@ -94,6 +94,8 @@ class SCM::Git::Branch < SCM::Git::CommandProxyBase
0
   def current_name(format = :short)
0
     return unless /^ref: (.+)$/.match(File.read(@base.path_for(".git/HEAD")))
0
     format_name($1, format)
0
+ rescue
0
+ nil
0
   end
0
   
0
   def delete(name, options = {})

Comments

    No one has commented yet.