增加git还原任务

pull/738/MERGE
ChenX 5 years ago
parent 2c7bfc4148
commit e81d9749f7

1
.gitignore vendored

@ -58,6 +58,5 @@ typings/
.env
#custom
.vscode
/dist*
/package-lock.json

13
.vscode/tasks.json vendored

@ -0,0 +1,13 @@
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "git硬还原",
"type": "shell",
"command": "git reset --hard @{0}",
"problemMatcher": []
},
]
}
Loading…
Cancel
Save