13 lines
273 B
Bash
13 lines
273 B
Bash
#!/usr/bin/env bash
|
|
#
|
|
# After running this script:
|
|
# 1. git dotfiles are symlinked
|
|
#
|
|
|
|
# 1. git dotfiles are symlinked
|
|
readonly git_source="$dotfiles_dir/git"
|
|
readonly git_target="$HOME"
|
|
link_folder "$git_source" "$git_target"
|
|
printf "git dotfiles linked\n"
|
|
git --version
|