今さらRails3メモ - 番外編その2: gitに入れてないファイルの洗い出し -

  • 以下の内容を Rails.root/lib/tasks/git.rake に置く
namespace :git do
desc "list git-untracked files"
task :untracked do
sh 'git ls-files -o --exclude-from=.gitignore'
end
end
view raw git.rake hosted with ❤ by GitHub
  • Rails.root/.gitignore に cache, tmp など除外したいファイルのパターンを追加

以上。

もっといい方があるような気もするけど、今のところ満足。

rake -s git:untracked | xargs git add

とか、まとめてできる。

More