From 95f20d227d1550acd0b8b29009685886c84aa52b Mon Sep 17 00:00:00 2001 From: Jack Foltz Date: Sat, 28 May 2022 19:07:02 -0400 Subject: [PATCH] Add base files --- .gitattributes | 1 + .gitignore | 1 + README.md | 10 ++++++++++ 3 files changed, 12 insertions(+) create mode 100644 .gitattributes create mode 100644 .gitignore create mode 100644 README.md diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..3c86b19 --- /dev/null +++ b/.gitattributes @@ -0,0 +1 @@ +.gitattributes !filter !diff diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..a7db3a3 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +.dotfiles diff --git a/README.md b/README.md new file mode 100644 index 0000000..ff21f2b --- /dev/null +++ b/README.md @@ -0,0 +1,10 @@ +# Dotfiles +Dotfiles management, entirely within git. + +## Installation +```shell +git clone --bare git@github.com:Foltik/dotfiles $HOME/.dotfiles +git --git-dir=$HOME/.dotfiles --work-tree=$HOME config --local status.showUntrackedFiles no +git --git-dir=$HOME/.dotfiles --work-tree=$HOME checkout +git-crypt unlock +```