Skip to content

Instantly share code, notes, and snippets.

View ender74's full-sized avatar

Heiko Hüter ender74

View GitHub Profile
@ender74
ender74 / mac_setup.txt
Last active March 7, 2019 08:05
Mac Setup
- 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
@ender74
ender74 / gitconfig
Created July 27, 2017 15:34
gitconfig snippets
[rerere]
enabled = true
[pull]
rebase = true
[alias]
co = checkout
br = branch
st = status
pp = rebase -i @{u}
ca = commit -a