Hello, On Mon, Dec 02, 2013 at 09:40:24PM +0100, q...@c9x.me wrote: > On Mon, Dec 02, 2013 at 10:07:17AM -0600, Chris Down wrote: > > On 2013-12-01 18:19:22 -0500, Eyal Erez wrote: > > > create mode 100644 .gitignore > > > > A gitignore when there are no subdirectories? What do you want a > > gitignore for? Just don't do `git add .` (ever). > > Would you mind elaborating? I use a git ignore in this kind of > situation to avoid having my `git status` full of garbage, are > there any alternatives to this? >
in ~/.gitconfig i have [status] showUntrackedFiles = no this does the trick for me, if i really want to see untracked files i do git status -u --Carlos