I’ve been there a lot: I’m using some kind of existing framework / tool / open source software which is awesome, but there is that tiny little thing that annoys me, and I’d like to change it.
Tag Archives: git
Reply
Installing Gitorious on Ubuntu 11.04
This guide is based on the Ubuntu Installation Guide from the Gitorious Wiki, but it is a little outdated, so here’s my updated version.
Hassle free .gitignore management with “gemignore”
For all of you who use Git on a daily basis, you probably know annoying it is to write .gitignore files yourself. But why do so? Someone else has already written them for you! Now for the really “lazy” ones, I wrote gemignore, which is a command-line utility which automatically adds snippets to you .gitignore files. Just take it for a test-drive:
$ gem install gemignore
$ gemignore
-> Available .gitignore snippets:
—> Python
—> Global/Linux
—> Java
—> WordPress
…
$ gemignore go
-> Snippets found for ‘go’:
—> Go
—> Django
$ gemignore add Django
Adding Snippet ‘Django’
$ gemignore
-> Available .gitignore snippets:
—> Python
—> Global/Linux
—> Java
—> WordPress
…
$ gemignore go
-> Snippets found for ‘go’:
—> Go
—> Django
$ gemignore add Django
Adding Snippet ‘Django’
Features planned as soon as I have the time to write them:
- Find the nearest .gitignore file instead of using the current working directory
- Add other sources for .gitignore snippets? (if you know any, please leave a comment :)
Proper command-line help– Added in 0.2.0
If you can think of a feature you’d like to see in gemignore feel free to post it as a comment. And please report any bugs you find here.