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 characters
| logging.level.org.hibernate.SQL=debug | |
| logging.level.org.hibernate.orm.jdbc.bind=trace |
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 characters
| [alias] | |
| st = status | |
| p = pull | |
| pu = pull | |
| ci = commit | |
| b = branch | |
| br = branch | |
| bs = branch -r | |
| t = tag | |
| ts = tag |
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 characters
| [merge] | |
| tool = kdiff3 | |
| [mergetool "kdiff3"] | |
| cmd = kdiff3.exe $BASE $LOCAL $REMOTE -o $MERGED --L2 'Local' --L3 'Remote' |
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 characters
| [merge] | |
| tool = winMerge | |
| [mergetool "winMerge"] | |
| cmd = WinMergeU.exe -e -u -wl -wr -dl "Local" -dm "Base" -dr "Remote" $LOCAL $BASE $REMOTE -o $MERGED -am |
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 characters
| [merge] | |
| tool = diffMerge | |
| [mergetool "diffMerge"] | |
| cmd = DiffMerge.exe -caption=$MERGED -merge -result=$MERGED -t1='Local' -t2='Base' -t3='Remote' $LOCAL $BASE $REMOTE |
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 characters
| [merge] | |
| tool = araxis | |
| [mergetool "araxis"] | |
| cmd = Compare.exe -merge -wait -max -title1:'Local' -title2:$MERGED -title3:'Remote' $LOCAL $BASE $REMOTE $MERGED |
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 characters
| for /f %%i in ('application arg0 arg1') do set VARIABLE=%%i | |
| echo %VARIABLE% |
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 characters
| c=clean | |
| cp=create-plugin | |
| ca=create-app | |
| dr=dependency-report | |
| rd=refresh-dependencies | |
| pp=package-plugin | |
| pi=plugin-info | |
| ra=run-app | |
| ta=test-app |
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 characters
| [alias] | |
| s = st -mardS | |
| b = branch | |
| bs = branches | |
| t = tag | |
| ts = tags | |
| d = araxisdiff | |
| p = pull | |
| pu = pull -u | |
| u = up |
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 characters
| // https://www.youtube.com/watch?v=k6vXQwxk7N8 | |
| //*** | |
| -3.abs() | |
| // A. 3 | |
| // B. NoSuchMethodError | |
| // C. -3 | |
| // D. Execution Failure | |
| //*** |
NewerOlder