Skip to content

Commit

Permalink
Add new tag action: Push
Browse files Browse the repository at this point in the history
ref #88
  • Loading branch information
phil294 committed Apr 17, 2024
1 parent 7c52ad1 commit 23c3ca1
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions web/src/views/default-git-actions.json
Original file line number Diff line number Diff line change
Expand Up @@ -345,6 +345,17 @@
}
],
"actions.tag": [
{
"title": "Push",
"description": "git push - Update remote refs along with associated objects",
"info": "Updates remote refs using local refs, while sending objects necessary to complete the given refs.\n\nYou can make interesting things happen to a repository every time you push into it, by setting up hooks there. See documentation for git-receive-pack(1).\n\nWhen the command line does not specify where to push with the <repository> argument, branch.*.remote configuration for the current branch is consulted to determine where to push. If the configuration is missing, it defaults to origin.\n\nWhen the command line does not specify what to push with <refspec>... arguments or --all, --mirror, --tags options, the command finds the default <refspec> by consulting remote.*.push configuration, and if it is not found, honors push.default configuration to decide what to push (See git-config(1) for the meaning of push.default).\n\nWhen neither the command-line nor the configuration specify what to push, the default behavior is used, which corresponds to the simple value for push.default: the current branch is pushed to the corresponding upstream branch, but as a safety measure, the push is aborted if the upstream branch does not have the same name as the local one.\n\nTo read the full documentation on this command, run `git help push` in a terminal.",
"icon": "repo-push",
"args": "push \"$1\" \"$2\"",
"params": [
"{DEFAULT_REMOTE_NAME}",
"{TAG_NAME}"
]
},
{
"title": "Delete",
"description": "git tag - delete a tag object",
Expand Down

0 comments on commit 23c3ca1

Please sign in to comment.