File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -10,12 +10,11 @@ ubuntu: ubuntu-core
1010core : $(OS ) -core
1111clean : $(OS ) -clean
1212cli-network : $(OS ) -cli-network
13+ git : $(OS ) -git
1314nano : $(OS ) -nano
1415stow : $(OS ) -stow
1516zsh : $(OS ) -zsh
1617
17- git : $(OS ) -git
18- ln -sf ' .dotfiles/pkg/git/.gitconfig' " ${HOME} "
1918micro : $(OS ) -micro
2019 stow --no-folding --dir ' pkg/micro' --target " ${HOME} " ' stow'
2120ansible : stow
Original file line number Diff line number Diff line change @@ -105,7 +105,7 @@ macos-duti: macos-brew
105105# This is a full suite of git plugins and configurations
106106# Most other target that requires git don't need this
107107macos-git : macos-brew
108- brew bundle --file pkg/git/git.Brewfile
108+ run " pkg/git/macos- git.sh "
109109
110110macos-micro : macos-brew
111111 brew install micro
Original file line number Diff line number Diff line change @@ -36,8 +36,8 @@ ubuntu-dropbox: ubuntu-essential
3636# CLIs #
3737# ##############################################################################
3838
39- ubuntu-git : ubuntu-stow
40- xargs sudo apt-get install -y < pkg/git/git.Aptfile
39+ ubuntu-git :
40+ run " pkg/git/debian- git.sh "
4141
4242ubuntu-micro : ubuntu-stow
4343 run " pkg/micro/debian-micro.sh"
Original file line number Diff line number Diff line change 1+ #! /bin/bash
2+ set -euo pipefail
3+
4+ # Install git and miscellaneous tools
5+ sudo apt-get update
6+ xargs sudo apt-get install -y < pkg/git/git.Aptfile
7+
8+ # Run global setup script
9+ bash pkg/git/git.sh
Original file line number Diff line number Diff line change 1+ #! /usr/bin/env bash
2+ set -euo pipefail
3+
4+ # Create a symbolic link for the global git configuration file
5+ ln -sf ' .dotfiles/pkg/git/.gitconfig' " ${HOME} "
Original file line number Diff line number Diff line change 1+ #! /bin/bash
2+ set -euo pipefail
3+
4+ # Install git and miscellaneous tools
5+ brew bundle --file pkg/git/git.Brewfile
6+
7+ # Run global setup script
8+ bash pkg/git/git.sh
You can’t perform that action at this time.
0 commit comments