blob: bed4afce3bcb33134a1051395eadfe2c8d8b6e5c (
plain)
1
2
3
4
5
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
|