Skip to content

Instantly share code, notes, and snippets.

@thenigan
Created February 19, 2012 03:44
Show Gist options
  • Save thenigan/1861841 to your computer and use it in GitHub Desktop.
Save thenigan/1861841 to your computer and use it in GitHub Desktop.
DeltaWalker config file for git diff and merge
diff_cmd () {
"$merge_tool_path" "$LOCAL" "$REMOTE" >/dev/null 2>&1
}
merge_cmd () {
if $base_present
then
"$merge_tool_path" "$LOCAL" "$REMOTE" "$BASE" "$MERGED" >/dev/null 2>&1
status=$?
else
status=1
fi
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment