Joe – CLI Python tool for generating .gitignore files
1–10 of 12 posts
Re: Joe – CLI Python tool for generating .gitignore files
#2You may want to rename your project.
Re: Joe – CLI Python tool for generating .gitignore files
#3positive feedback: pretty well-presented, with a nice readme
negative feedback: the time required to run joe (including remember that it exists, possibly installing it, how to invoke it correctly) is going to be similar to the time required to just manually write a ignore file / copy and edit one from a previous project in the same language.
Re: Joe – CLI Python tool for generating .gitignore files
#4Been using https://www.gitignore.io/ with a lot of success
Re: Joe – CLI Python tool for generating .gitignore files
#5Been using https://www.gitignore.io/ with a lot of success
There is a cool oh-my-zsh plugin for this:
https://github.com/robbyrussell/oh-my-zsh/blob/master/plugin...
Re: Joe – CLI Python tool for generating .gitignore files
#6You may want to rename your project. http://joe-editor.sourceforge.net/
Agree. A good few years ago a large part of students at my uni used joe as their linux editor.
Re: Joe – CLI Python tool for generating .gitignore files
#7What advantage does this have over just grabbing the file from https://github.com/github/gitignore directly?
Re: Joe – CLI Python tool for generating .gitignore files
#8Alternatively
gitignore() {
wget \
https://raw.githubusercontent.com/github/gitignore/master/Global/OSX.gitignore \
https://raw.githubusercontent.com/github/gitignore/master/$1.gitignore \
-O .gitignore
}Re: Joe – CLI Python tool for generating .gitignore files
#9What advantage does this have over just grabbing the file from https://github.com/github/gitignore directly?
Saves time, I guess. The same reason you'd wanna use something like `howdoi` to get StackOverflow answers directly inside the terminal.
Re: Joe – CLI Python tool for generating .gitignore files
#101 line shell function that does the same thing:
https://github.com/caarlos0/dotfiles/blob/master/git/aliases...