FredrikNoren / ungit

The easiest way to use git. On any platform. Anywhere.
MIT License
10.45k stars 640 forks source link

Modify git ignore in the ui #29

Closed FredrikNoren closed 11 years ago

FredrikNoren commented 11 years ago

Make it possible to add files (and possibly directories) to git ignore from the ui.

yeradis commented 11 years ago

This is a must have, ungit should make use of .ignore

yeradis commented 11 years ago

at #96 you said its a duplicate, i think there should be a better info, because 96 i think is a feature and 28 i think is an issue because rigth now there are git ignore constrainst on existing projects that ungit is not applying

so, both are about git ignore, but are not the same

zedutch commented 11 years ago

@yeradis There is no description whatsoever in this issue so it could be about everything pertaining to git ignore... I did not say the other one is a duplicate, I just asked if it wasn't the same issue as this one, since this one seems to be about git ignore in general :)

MartinBurian commented 11 years ago

I'd love ungit to take .gitignore into account when displaying unstaged files. I have quite a lot of untracked files and they make the ungit experience rather unpleasant (try to find the files you've modified between 100 others)

FredrikNoren commented 11 years ago

Hm your gitignore should still filter out stuff from staging, ungit is just using git status behind the scenes On 20 Sep 2013 18:33, "MartinBurian" notifications@github.com wrote:

I'd love ungit to take .gitignore into account when displaying unstaged files. I have quite a lot of untracked files and they make the ungit experience rather unpleasant (try to find the files you've modified between 100 others)

— Reply to this email directly or view it on GitHubhttps://github.com/FredrikNoren/ungit/issues/29#issuecomment-24823086 .

MartinBurian commented 11 years ago

Oh, setting the gitignore to ignore the whole directory instead of individual files did the trick. Thanks for hinting.