Skip to content

Instantly share code, notes, and snippets.

View harishthatikonda's full-sized avatar
🎯
Focusing

Harish Thatikonda harishthatikonda

🎯
Focusing
View GitHub Profile
@harishthatikonda
harishthatikonda / .gitconfig
Last active September 17, 2020 14:35
My everyday git aliases
[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"
@harishthatikonda
harishthatikonda / keybindings.json
Created December 17, 2018 08:45
My VsCode keybindings.json
// 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"