This commit is contained in:
2021-02-26 20:54:31 +01:00
parent aaf7d1e7d2
commit 80bb349dfb
2 changed files with 4 additions and 31 deletions
-26
View File
@@ -1,26 +0,0 @@
[
{
"key": "ctrl+shift+b",
"command": "vscodeMarkdownNotesBacklinks.focus"
},
{
"key": "ctrl+alt+[",
"command": "workbench.action.navigateBack"
},
{
"key": "ctrl+alt+]",
"command": "workbench.action.navigateForward"
},
{
"key": "ctrl+shift+a",
"command": "git.commitAll"
},
{
"key": "ctrl+alt+v",
"command": "toggleVim"
},
{
"key": "ctrl+shift+s",
"command": "workbench.action.files.saveFiles"
}
]
+4 -5
View File
@@ -1,9 +1,8 @@
# Git Alias
```
$ git config --global alias.co checkout
$ git config --global alias.br branch
$ git config --global alias.ci commit
$ git config --global alias.st status
git config --global alias.co checkout
git config --global alias.br branch
git config --global alias.ci commit
git config --global alias.F "reset --hard HEAD"
```