public
Rubygem
Description: Simple tool to help track git and svn vendor branches in a git repository
Homepage: http://github.com/evilchelu/braid/wikis/home
Clone URL: git://github.com/evilchelu/braid.git
loosen up check for local changes string to work on more git versions
evilchelu (author)
Sun Jul 20 18:05:55 -0700 2008
norbert (committer)
Tue Aug 19 08:40:38 -0700 2008
commit  4451b8407dadaa4be073167fbcdd152cae4a9b2b
tree    c1c37b4bd827e8623926b351065e78047e22bd21
parent  ce60738d9fae6c055756ce1fd4b871d28729ced7
...
203
204
205
206
 
207
208
209
...
203
204
205
 
206
207
208
209
0
@@ -203,7 +203,7 @@ module Braid
0
 
0
       def status_clean?
0
         status, out, err = exec("git status")
0
-        !out.split("\n").grep(/nothing to commit \(working directory clean\)/).empty?
0
+        !out.split("\n").grep(/nothing to commit/).empty?
0
       end
0
 
0
       def ensure_clean!

Comments