Closed maw closed 13 years ago
I've merged "Display new tags correctly", thanks!
As for configuring of directories to watch I'm thinking what is the best way to approach it. Like stated in README you can run multiple instances of git-dude watching different directories. Settings in global .gitconfig are well.. global ;) If you want to monitor 2 dirs (like "work", and "play") full of repos than this setting need to include all of the repo names from these 2 monitored dude directories. I see 2 solutions here.
First: use dedicated directory for dude and put symlinks to real repos in it. This way you'll monitor only what you want. This already works.
Second: I'm thinking about introducing local repo settings (using git-config of course). From inside specific repo you could then run:
git config dude.ignore true
and git-dude would not monitor it even if it is in dude-watched dir. This would also allow for setting custom notification icon for each repo with this:
git config dude.icon ~/.icons/kitten.png
What do you think?
I've implement per-repo settings that can be used to achieved that.
Two commits. Both should be pretty self-explanatory.