Last active
March 19, 2020 09:51
-
-
Save lukemorton/7084d1bffd5967e44d2810200dac0f8c to your computer and use it in GitHub Desktop.
Revisions
-
lukemorton revised this gist
Mar 19, 2020 . No changes.There are no files selected for viewing
-
lukemorton revised this gist
Mar 19, 2020 . 1 changed file with 27 additions and 16 deletions.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -1,17 +1,28 @@ [alias] st = status -sb co = checkout cp = cherry-pick ci = commit br = branch sub = submodule ls = log --pretty=format:"%C(yellow)%h%Cred%d\\ %Creset%s%Cblue\\ [%cn]" --decorate ll = log --pretty=format:"%C(yellow)%h%Cred%d\\ %Creset%s%Cblue\\ [%cn]" --decorate --numstat undo = reset HEAD^ p = !git stash && git pull --recurse-submodules && git stash pop og = !git stash && git fetch && git rebase origin/master && git stash pop pp = !git p && git push lsnc = log --pretty=format:"%h\\ %s\\ [%cn]" --decorate y = log --author="Luke\\ Morton" --since="1\\ day\\ ago" --all --reverse --pretty=format:"%C(yellow)%h%Cred%d\\ %Creset%s" --decorate springcleanremote = remote prune origin springcleanlocal = !git branch | grep -v ^* | grep -v "master" | xargs git branch -D springclean = !git springcleanremote && git springcleanlocal [credential] helper = osxkeychain [user] name = Luke Morton email = [email protected] [core] editor = atom --wait [pull] rebase = true -
lukemorton created this gist
Jan 23, 2018 .There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,17 @@ [alias] st = status -sb co = checkout cp = cherry-pick ci = commit br = branch sub = submodule ls = log --pretty=format:"%C(yellow)%h%Cred%d\\ %Creset%s%Cblue\\ [%cn]" --decorate ll = log --pretty=format:"%C(yellow)%h%Cred%d\\ %Creset%s%Cblue\\ [%cn]" --decorate --numstat undo = reset HEAD^ p = !git stash && git pull --recurse-submodules && git stash pop pp = !git p && git push lsnc = log --pretty=format:"%h\\ %s\\ [%cn]" --decorate y = log --author="Luke\\ Morton" --since="1\\ day\\ ago" --all --reverse --pretty=format:"%C(yellow)%h%Cred%d\\ %Creset%s" --decorate springcleanremote = remote prune origin springcleanlocal = !git branch | grep -v ^* | grep -v "master" | xargs git branch -D springclean = !git springcleanremote && git springcleanlocal