readme work?
authorDaniel Liu <mr.picklepinosaur@gmail.com>
Fri, 27 Nov 2020 05:46:25 +0000 (00:46 -0500)
committerDaniel Liu <mr.picklepinosaur@gmail.com>
Fri, 27 Nov 2020 05:46:25 +0000 (00:46 -0500)
.github/README.md [new file with mode: 0644]

diff --git a/.github/README.md b/.github/README.md
new file mode 100644 (file)
index 0000000..49d6045
--- /dev/null
@@ -0,0 +1,30 @@
+# Dotfiles!!
+
+## How I manage dotfiles
+This method of managing dotfiles was inspired by [this](https://www.youtube.com/watch?v=tBoLDpTWVOM) video.
+
+TLDR;
+Run in your home directory:
+```
+git init --bare .dotfiles
+```
+
+Then for ease of use add this alias to your bashrc (etc):
+```
+alias dotfiles='/usr/bin/git --git-dir=$HOME/.dotfiles --work-tree=$HOME'
+```
+
+After reloading the shell, run:
+```
+dotfiles config --local status.showUntrackedFiles no
+```
+
+Now you can use the normal git commands like so
+```
+dotfiles add .bashrc
+dotfiles status
+dotfiles commit -m 'added .bashrc'
+```
+
+## Features
+