mirror of
https://github.com/danbee/mac-setup
synced 2025-03-04 08:39:10 +00:00
9 lines
201 B
Bash
Executable File
9 lines
201 B
Bash
Executable File
#!/bin/sh
|
|
|
|
DOTFILES="$HOME/dotfiles-local"
|
|
|
|
if [ ! -f "$DOTFILES/gitconfig.author" ]; then
|
|
cp "$DOTFILES//gitconfig.author.example" "$DOTFILES/gitconfig.author"
|
|
vim "$DOTFILES/gitconfig.author"
|
|
fi
|