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] | |
pr = pull --rebase | |
tree = log --graph --decorate=auto --abbrev-commit | |
sync = "!f(){ git status;branches=`git ls-remote --heads|cut -f3- -d/`;for brnch in $branches;do echo -e \\nSyncing $brnch;git checkout $brnch;git pr;done;}; f" |
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
// Place your key bindings in this file to override the defaultsauto[] | |
[ | |
{ | |
"key": "ctrl+q", | |
"command": "workbench.action.navigateToLastEditLocation", | |
}, | |
{ | |
"key": "ctrl+alt+p", | |
"command": "workbench.action.terminal.focusPreviousPane", | |
"when": "terminalFocus" |