今さらRails3メモ - 番外編その2: gitに入れてないファイルの洗い出し -
- 以下の内容を Rails.root/lib/tasks/git.rake に置く
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
namespace :git do | |
desc "list git-untracked files" | |
task :untracked do | |
sh 'git ls-files -o --exclude-from=.gitignore' | |
end | |
end |
- Rails.root/.gitignore に cache, tmp など除外したいファイルのパターンを追加
以上。
もっといい方があるような気もするけど、今のところ満足。
rake -s git:untracked | xargs git add
とか、まとめてできる。