public
Description: The Git TextMate Bundle
Homepage: http://tim.theenchanter.com/
Clone URL: git://github.com/timcharper/git-tmbundle.git
fixed ls_files to properly ignore files (I took it out earlier because it 
was causing git to throw an error message, but strangely, git is no longer 
complaining)
timcharper (author)
Fri Jun 13 14:29:24 -0700 2008
commit  a58c7355bf37482ec5400b1877778bb872fec4d7
tree    ef8ca81cf688b88d6a39157ef1ce0e57deb4a6b8
parent  0e663f9094997354197bc308909267d33a2d9f7f
...
164
165
166
167
168
 
 
169
170
171
...
164
165
166
 
 
167
168
169
170
171
0
@@ -164,8 +164,8 @@ module SCM
0
       options[:type] ||= nil
0
       params = []
0
       params << "-#{options[:type]}" if options[:type]
0
- # params << "--exclude-per-directory=.gitignore"
0
- # params << "--exclude-from=#{e_sh options[:exclude_file]}" if options[:exclude_file]
0
+ params << "--exclude-per-directory=.gitignore"
0
+ params << "--exclude-from=#{e_sh options[:exclude_file]}" if options[:exclude_file]
0
       
0
       command("ls-files", *params).split("\n")
0
     end

Comments

    No one has commented yet.