Bernt Hansen <be...@norang.ca> writes:

> The easiest way to get rid of them is to have git clean them out --
> you need to tell it to clean out files and include ignored files which
> is what the -x switch does.  Make sure you specify the '*.bak' pattern
> otherwise it will clean out _everything_ that is not tracked which
> includes all of your compiled files.
>
> $ git clean -x '*.bak'

and you can dry-run the command by adding the -n switch

$ git clean -n -x '*.bak' 

will tell you what it would have deleted without actually deleting
anything.

-Bernt

_______________________________________________
Emacs-orgmode mailing list
Please use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode

Reply via email to