Added commands on backing up current dotfiles

This commit is contained in:
Kris Lamoureux 2019-10-16 23:58:39 -04:00
parent 26f3ba12b5
commit a2b2fd30a8
Signed by: kris
GPG Key ID: 3EDA9C3441EDA925

View File

@ -2,6 +2,15 @@
### Installation
You may want to backup your current dotfiles:
```
mv ~/.bash_aliases ~/.bash_aliases-$(date '+%Y%m%d%H%M%S')
mv ~/.bashrc ~/.bashrc-$(date '+%Y%m%d%H%M%S')
mv ~/.vimrc ~/.vimrc-$(date '+%Y%m%d%H%M%S')
```
Then install symlinks in their place:
```
git clone git@github.com:krislamo/dotfiles.git && \
cd dotfiles && \