Add a global gitignore
This commit is contained in:
parent
5bdb6a4eea
commit
1e11256c4d
2 changed files with 15 additions and 0 deletions
|
@ -5,6 +5,7 @@ BASEDIR=$(pwd)
|
||||||
|
|
||||||
# ln the various files
|
# ln the various files
|
||||||
test -L $HOME/.curlrc || ln -f -s $BASEDIR/curlrc $HOME/.curlrc
|
test -L $HOME/.curlrc || ln -f -s $BASEDIR/curlrc $HOME/.curlrc
|
||||||
|
test -L $HOME/.gitignore || ln -f -s $BASEDIR/gitignore $HOME/.gitignore
|
||||||
test -L $HOME/.hushlogin || ln -f -s $BASEDIR/hushlogin $HOME/.hushlogin
|
test -L $HOME/.hushlogin || ln -f -s $BASEDIR/hushlogin $HOME/.hushlogin
|
||||||
test -L $HOME/.zshrc || ln -f -s $BASEDIR/zshrc $HOME/.zshrc
|
test -L $HOME/.zshrc || ln -f -s $BASEDIR/zshrc $HOME/.zshrc
|
||||||
|
|
||||||
|
|
14
gitignore
Normal file
14
gitignore
Normal file
|
@ -0,0 +1,14 @@
|
||||||
|
# Compiled Python files
|
||||||
|
*.pyc
|
||||||
|
|
||||||
|
# Folder view configuration files
|
||||||
|
.DS_Store
|
||||||
|
Desktop.ini
|
||||||
|
|
||||||
|
# Thumbnail cache files
|
||||||
|
._*
|
||||||
|
Thumbs.db
|
||||||
|
|
||||||
|
# Files that might appear on external disks
|
||||||
|
.Spotlight-V100
|
||||||
|
.Trashes
|
Loading…
Add table
Reference in a new issue