Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
36 changes: 25 additions & 11 deletions .fork/custom-commands.json
Original file line number Diff line number Diff line change
@@ -1,18 +1,32 @@
[
[
{
"version": 2
"version" : 2
},
{
"action": {
"script": "git push origin ${ref}\ngit push gitee.com ${ref}",
"showOutput": false,
"type": "sh",
"waitForExit": true
"action" : {
"script" : "git branch -d localBranchName\ngit push gitee.com --delete refs/heads/${ref}",
"showOutput" : false,
"type" : "sh",
"waitForExit" : true
},
"name": "Push All Branch",
"refTargets": [
"name" : "Delete All Branch",
"refTargets" : [
"localbranch",
"remotebranch"
],
"target" : "ref"
},
{
"action" : {
"script" : "git push origin ${ref}\ngit push gitee.com ${ref}",
"showOutput" : false,
"type" : "sh",
"waitForExit" : true
},
"name" : "Push All Branch",
"refTargets" : [
"localbranch"
],
"target": "ref"
"target" : "ref"
}
]
]