1
0
Fork 0

Add gitignore.io

This commit is contained in:
Starbeamrainbowlabs 2016-09-12 21:05:02 +01:00
parent 2e868f7b0d
commit 45861c1d78
2 changed files with 5 additions and 0 deletions

View File

@ -38,6 +38,7 @@ Here's a list of the most interesting ones, along with what they do and where th
- [catimg](https://github.com/posva/catimg) - A cool script to display images in the terminal. Useful when you're sshing into servers.
- [tldr](https://github.com/raylee/tldr) - A bash client for
[tldr-pages](https://github.com/tldr-pages/tldr).
- [git ignore](https://gitignore.io/) - A really useful subcommand for git that allows you to generate ignore files automagically.
## Disclaimer
I don't own many of the tools in this repository. If you are an owner of one of these tools and I haven't linked to you, please let me know as I probably forgot.

View File

@ -9,3 +9,7 @@ ln -s ${BIN_DIR}/.bashrc ~/.bashrc
ln -s ${BIN_DIR}/.bash_aliases ~/.bash_aliases
# Copy the bash host file into place
cp ${BIN_DIR}/.bash_host ~
# Set up git
## Add gitignore.io .gitignore file generator
git config --global alias.ignore '!gi() { curl -L -s https://www.gitignore.io/api/$@ ;}; gi'