View mac_setup.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- Install Homebrew (https://brew.sh/) | |
- Install chrome browser (https://www.google.com/chrome) | |
- Configure Shell | |
- brew cask install iterm2 | |
- brew cask install zsh | |
- sh -c "$(curl -fsSL https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh)" | |
- Generate ssh key | |
- ssh-keygen -t rsa | |
- Install Java Build environment | |
- brew cask install java |
View gitconfig
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[rerere] | |
enabled = true | |
[pull] | |
rebase = true | |
[alias] | |
co = checkout | |
br = branch | |
st = status | |
pp = rebase -i @{u} | |
ca = commit -a |