mirror of
https://github.com/ublue-os/forge.git
synced 2025-07-14 05:35:45 +03:00
chore(devcontainer): init
for everyone who wants to use it ;)
This commit is contained in:
parent
9b46c072f5
commit
b7d9417abd
10 changed files with 209 additions and 0 deletions
0
.vscode/cspell_custom.txt
vendored
Normal file
0
.vscode/cspell_custom.txt
vendored
Normal file
39
.vscode/tasks.json
vendored
Normal file
39
.vscode/tasks.json
vendored
Normal file
|
@ -0,0 +1,39 @@
|
|||
{
|
||||
// See https://go.microsoft.com/fwlink/?LinkId=733558
|
||||
// for the documentation about the tasks.json format
|
||||
"version": "2.0.0",
|
||||
"tasks": [
|
||||
{
|
||||
"label": "Git: Fetch upstream",
|
||||
"type": "shell",
|
||||
"command": "git fetch upstream",
|
||||
"options": {
|
||||
"cwd": "${workspaceFolder}"
|
||||
}
|
||||
},
|
||||
{
|
||||
"label": "Git: Merge from upstream",
|
||||
"type": "shell",
|
||||
"command": "git merge --no-ff --no-commit upstream/main",
|
||||
"options": {
|
||||
"cwd": "${workspaceFolder}"
|
||||
}
|
||||
},
|
||||
{
|
||||
"label": "Git: Delete merged branches",
|
||||
"type": "shell",
|
||||
"command": "git delete-merged-branches",
|
||||
"options": {
|
||||
"cwd": "${workspaceFolder}"
|
||||
}
|
||||
},
|
||||
{
|
||||
"label": "Git: Prune remote",
|
||||
"type": "shell",
|
||||
"command": "git remote prune origin",
|
||||
"options": {
|
||||
"cwd": "${workspaceFolder}"
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue