Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ steps_counter=0
steps_errors=()
final_step_index=6

# Reurns colorized step title
function step_title() {
echo "${bold}${green}STEP $1: $2...${reset}"
}
Expand Down Expand Up @@ -83,8 +84,8 @@ function step_5() {
git config --global user.name ${name}
git config --global credential.helper "store --file ${credentials}"
git config --global alias.ignore "update-index --skip-worktree"
git config --global alias.unignore "update-index --no-skip-worktree"
git config --global alias.ignored "!git ls-files -v | grep \"^S\""
git config --global alias.unignore "update-index --no-skip-worktree"
git config --global alias.ignored "!git ls-files -v | grep \"^S\""
git config --global core.editor nano
git config --global core.excludesfile "$HOME/.gitignore_global"
git config --global pull.rebase false
Expand Down