mirror of
https://github.com/sbrl/bin.git
synced 2018-01-10 21:33:46 +00:00
Add gitignore.io
This commit is contained in:
parent
2e868f7b0d
commit
45861c1d78
2 changed files with 5 additions and 0 deletions
|
@ -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.
|
- [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](https://github.com/raylee/tldr) - A bash client for
|
||||||
[tldr-pages](https://github.com/tldr-pages/tldr).
|
[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
|
## 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.
|
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.
|
||||||
|
|
4
envsetup
4
envsetup
|
@ -9,3 +9,7 @@ ln -s ${BIN_DIR}/.bashrc ~/.bashrc
|
||||||
ln -s ${BIN_DIR}/.bash_aliases ~/.bash_aliases
|
ln -s ${BIN_DIR}/.bash_aliases ~/.bash_aliases
|
||||||
# Copy the bash host file into place
|
# Copy the bash host file into place
|
||||||
cp ${BIN_DIR}/.bash_host ~
|
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'
|
||||||
|
|
Loading…
Reference in a new issue