diff options
author | Vidhu Kant Sharma <vidhukant@vidhukant.com> | 2025-08-29 18:45:41 +0530 |
---|---|---|
committer | Vidhu Kant Sharma <vidhukant@vidhukant.com> | 2025-08-29 18:45:41 +0530 |
commit | 4ba061a33ad53766646dd01515fd249495bb37b4 (patch) | |
tree | e43f5ddd670514036d15397015efdeb6f906d5c8 | |
parent | 13d6ff71f39f5737f1312d8121270bcb84efda51 (diff) |
added setup_dots script
-rw-r--r-- | .scripts/setup_dots | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/.scripts/setup_dots b/.scripts/setup_dots new file mode 100644 index 0000000..bed4afc --- /dev/null +++ b/.scripts/setup_dots @@ -0,0 +1,6 @@ +#!/bin/bash + +git init --bare $HOME/.dots +git --git-dir=$HOME/.dots/ --work-tree=$HOME config --local status.showUntrackedFiles no +git --git-dir=$HOME/.dots/ --work-tree=$HOME remote add origin git@vidhukant.com:dots +git --git-dir=$HOME/.dots/ --work-tree=$HOME pull origin master |