You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
717 B

5 years ago
# .dotfiles
My Arch Linux dotfiles. Most of them are personalized variants of the LARBS dotfiles files
## Migration of my dotfiles to other system
5 years ago
###set alias in .bashrc
5 years ago
```alias config='/usr/bin/git --git-dir=$HOME/.dotfiles/ --work-tree=$HOME'```
5 years ago
###clone this repository
5 years ago
```git clone --bare https://github.com/TiynGER/.dotfiles $HOME/.dotfiles```
5 years ago
###checkout changes
5 years ago
```config checkout```
5 years ago
###backup old files
```mkdir -p .config-backup && \
5 years ago
config checkout 2>&1 | egrep "\s+\." | awk {'print $1'} | \
5 years ago
xargs -I{} mv {} .config-backup/{}
```
###checkout changes
5 years ago
```config checkout```
5 years ago
###set showUntrackedFiles to no
5 years ago
```config config --local status.showUntrackedFiles no```
5 years ago
###pull current setup
5 years ago
```config pull```