Terminal: synchronize config with git

/

We have access to more than one computer and every bash/zsh/vim/… needs a configuration. I’ve tried several things to keep it in sync (rsync, unison, …), but at the end I used git. create: cd ~ mkdir .config cd .config git init vi ~/.config/1_create_links.sh #!/bin/bash now=`date “+%Y%m%d-%H%M%S”` if [ -e ~/.alias -a ! -L ~/.alias Read More