Skip to content

Instantly share code, notes, and snippets.

View Garllon's full-sized avatar

Garllon

  • Farbfox GmbH
  • Berlin
View GitHub Profile
@Garllon
Garllon / .gitconfig
Last active September 3, 2019 16:07
Setup git config emails for specific folder
[alias]
co = checkout
br = branch
ci = commit
st = status
[includeIf "gitdir:<path>"]
path = .gitconfig-work
[includeIf "gitdir:~/code/garllon/"]
path = .gitconfig-private
[filter "lfs"]
@Garllon
Garllon / config_my_git.sh
Created June 28, 2016 15:25
Initial Ubuntu Configuration
git config --global user.name 'Garllon'
git config --global user.email palluthe.bennet@gmail.com
git config --global core.editor vim
git config --global alias.co checkout
git config --global alias.br branch
git config --global alias.ci commit
git config --global alias.st status