-
Notifications
You must be signed in to change notification settings - Fork 2
Description
Installer Rectangle.app / Iterm.app
Iterm
theme dark
color presets snazzy
working directory : /Users/louis_celier/Workspace/
oh my zsh
.gitsetup
[color]
ui = true
[color "diff"]
meta = cyan bold
frag = yellow
old = red bold
new = green bold
[pull]
rebase = true
.gitconfig
[include]
path = ~/.gitalias
path = ~/.gitsetup
[core]
editor = nano
.gitalias
[alias]
git = !git
psuh = push
amend = commit --amend
ba = branch -a
branches = branch -a
changes = diff --name-status
ci = commit
co = checkout
forget = "!git fetch -p && git branch -vv | awk '/: disparue]/{print $1}' | xargs git branch -D"
new-branch = checkout -b
st = status
staged = diff --staged
first-push = !git push -u origin $(git rev-parse --abbrev-ref HEAD)
rewrite-commits = "!rwc() { git rebase --interactive HEAD~"$1"; }; rwc"