diff options
-rwxr-xr-x | Link-Them | 2 | ||||
-rw-r--r-- | gitconfig | 5 |
2 files changed, 6 insertions, 1 deletions
@@ -12,7 +12,7 @@ else relpath="${dir##$HOME/}/" fi -for file in bash_profile bashrc screenrc vimrc zshrc zshfunc; do +for file in bash_profile bashrc gitconfig screenrc vimrc zshrc zshfunc; do if [ -L "$HOME/.$file" ]; then if [ "$(readlink "$HOME/.$file")" = "$dir/$file" ]; then # old style symlink, remove rm -v -f "$HOME/.$file" @@ -4,6 +4,7 @@ [alias] st = status ci = commit + co = checkout [color] diff = auto status = auto @@ -12,3 +13,7 @@ sslCAPath = /etc/ssl/certs [merge] summary = true +[branch "debian-merge"] + mergeoptions = --no-ff --no-commit +[branch "debian"] + mergeoptions = --no-ff --no-commit |