This file contains 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
{"name":"vscode-profile","settings":"{\"settings\":\"{\\r\\n \\\"window.zoomLevel\\\": 0,\\r\\n \\\"[json]\\\": {\\r\\n \\\"editor.defaultFormatter\\\": \\\"vscode.json-language-features\\\"\\r\\n },\\r\\n \\\"[typescript]\\\": {\\r\\n \\\"editor.defaultFormatter\\\": \\\"vscode.typescript-language-features\\\"\\r\\n },\\r\\n \\\"editor.fontFamily\\\": \\\"'JetBrains Mono', Consolas, 'Courier New', monospace\\\",\\r\\n \\\"editor.fontLigatures\\\": true,\\r\\n \\\"editor.fontSize\\\": 12,\\r\\n \\\"editor.lineHeight\\\": 20,\\r\\n \\\"editor.formatOnPaste\\\": false,\\r\\n \\\"editor.formatOnSave\\\": false,\\r\\n \\\"editor.linkedEditing\\\": true,\\r\\n \\\"editor.minimap.enabled\\\": false,\\r\\n \\\"editor.occurrencesHighlight\\\": false,\\r\\n \\\"editor.renderWhitespace\\\": \\\"trailing\\\",\\r\\n \\\"editor.suggest.insertMode\\\": \\\"replace\\\",\\r\\n \\\"editor.acceptSuggestionOnCommitCharacter\\\": false,\\r\\n \\\"files.autoSave\\\": \\\"onFocusChange\\\",\\r\\n \\\"files |
This file contains 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
{ | |
"goalTreeString": "%7B%22branches%22%3A%7B%22master%22%3A%7B%22target%22%3A%22C1%22%2C%22id%22%3A%22master%22%2C%22remoteTrackingBranchID%22%3A%22o/master%22%7D%2C%22o/master%22%3A%7B%22target%22%3A%22C1%22%2C%22id%22%3A%22o/master%22%2C%22remoteTrackingBranchID%22%3Anull%7D%2C%22feature%22%3A%7B%22target%22%3A%22C5%27%22%2C%22id%22%3A%22feature%22%2C%22remoteTrackingBranchID%22%3A%22o/feature%22%7D%2C%22o/feature%22%3A%7B%22target%22%3A%22C6%22%2C%22id%22%3A%22o/feature%22%2C%22remoteTrackingBranchID%22%3Anull%7D%2C%22fixForMR%22%3A%7B%22target%22%3A%22C6%22%2C%22id%22%3A%22fixForMR%22%2C%22remoteTrackingBranchID%22%3A%22o/feature%22%7D%7D%2C%22commits%22%3A%7B%22C0%22%3A%7B%22parents%22%3A%5B%5D%2C%22id%22%3A%22C0%22%2C%22rootCommit%22%3Atrue%7D%2C%22C1%22%3A%7B%22parents%22%3A%5B%22C0%22%5D%2C%22id%22%3A%22C1%22%7D%2C%22C2%22%3A%7B%22parents%22%3A%5B%22C1%22%5D%2C%22id%22%3A%22C2%22%7D%2C%22C3%22%3A%7B%22parents%22%3A%5B%22C2%22%5D%2C%22id%22%3A%22C3%22%7D%2C%22C4%22%3A%7B%22parents%22%3A%5B%22C3%22%5D |
This file contains 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
# init colors to be used in other commands if possible | |
function _initColors() { | |
if test -t 1; then | |
local nbColors=$(tput colors) | |
if test -n "$nbColors" && test $nbColors -ge 8; then | |
green=$(tput setaf 2) | |
red=$(tput setaf 1) | |
cyan=$(tput setaf 6) | |
normal=$(tput sgr0) | |
fi |
This file contains 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
new ObjectMapper() | |
.setSerializationInclusion(JsonInclude.Include.NON_NULL) | |
.writerWithDefaultPrettyPrinter() | |
.writeValueAsString( myObject ) |
This file contains 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] | |
br = branch | |
ci = commit | |
cl = clone | |
co = checkout | |
cp = cherry-pick | |
diff = diff --word-diff | |
dc = diff --cached | |
gr = grep -Ii | |
st = status -sb |