dotfiles

🎜 Clone'em, tweak'em, stick'em in your $HOME 🎝
git clone https://git.kevinlegouguec.net/dotfiles
Log | Files | Refs | README

commit 2da9b9fa1ce3feeaf5f3425d352f038312abb3e1
parent 9fcc898f89bfc04a58b7e0a6fce71c0567872b43
Author: KΓ©vin Le Gouguec <kevin.legouguec@gmail.com>
Date:   Tue, 13 Feb 2018 19:10:15 +0100

Remove .gitignore

Adding a  setup step  feels marginally cleaner  than having  this dumb
match-all .gitignore.

🀷

Diffstat:
D.gitignore | 1-
MREADME | 5++++-
2 files changed, 4 insertions(+), 2 deletions(-)

diff --git a/.gitignore b/.gitignore @@ -1 +0,0 @@ -* diff --git a/README b/README @@ -20,7 +20,10 @@ $ git remote add --fetch $cutename $url $ git reset $cutename/master # Checkout dotfiles that were not already in $HOME: -$ git checkout -- .gitignore # … +$ git checkout -- .foo .bar .baz + +# Tell Git to ignore all untracked files: +$ echo '*' >> .git/info/exclude # Tell Git to forget about repository fluff: $ git update-index --assumed-unchanged -- README # …