Last active
March 13, 2017 10:23
-
-
Save mike-boddin/12ddc6341cf866f527a4 to your computer and use it in GitHub Desktop.
Revisions
-
mike-boddin revised this gist
Mar 13, 2017 . 1 changed file with 1 addition and 0 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 @@ -10,6 +10,7 @@ pg = log --graph --decorate=short --date=relative --all pullff = pull --ff-only pullr = pull -r stat = status --short --branch [credential] helper = cache --timeout=43200 [merge] -
mike-boddin revised this gist
Dec 8, 2015 . 1 changed file with 1 addition and 1 deletion.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 @@ -9,4 +9,4 @@ else fi echo "open editor for file '$PARAMS'" "$NOTEPAD_HOME/notepad++.exe" -multiInst -nosession -noPlugin "$PARAMS" -
mike-boddin revised this gist
Dec 8, 2015 . 2 changed files with 13 additions and 0 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,5 +1,6 @@ [core] autocrlf = true editor = gitedit.sh [user] name = Mike Boddin email = [email protected] 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,12 @@ #!/bin/sh NOTEPAD_HOME="c:/Program Files (x86)/Notepad++" if [[ $(uname) == CYGWIN* ]] ; then PARAMS="$(cygpath -w "$*")" else PARAMS="$*" fi echo "open editor for file '$PARAMS'" "$NOTEPAD_HOME/notepad++.exe" -multiInst -nosession -noPlugin "$(cygpath -w "$*")" -
mike-boddin revised this gist
Dec 8, 2015 . 1 changed file with 1 addition and 1 deletion.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 @@ -19,4 +19,4 @@ tool = kdiff3 guitool = kdiff3 [difftool "kdiff3"] path = $KDIFF_HOME/kdiff3.exe -
mike-boddin created this gist
Dec 8, 2015 .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,22 @@ [core] autocrlf = true [user] name = Mike Boddin email = [email protected] [push] default = simple [alias] pg = log --graph --decorate=short --date=relative --all pullff = pull --ff-only pullr = pull -r [credential] helper = cache --timeout=43200 [merge] tool = kdiff3 [mergetool "kdiff3"] path = $KDIFF_HOME/kdiff3.exe [diff] tool = kdiff3 guitool = kdiff3 [difftool "kdiff3"] path = $KDIFF_HOME/kdiff3.exe