How to pass the equivalent of git push -o <string>? #953
Labels
No Label
bug
duplicate
enhancement
invalid
question
up for grabs
wontfix
No Milestone
No project
No Assignees
1 Participants
Notifications
Due Date
No due date set.
Dependencies
No dependencies set.
Reference: jcarr/git2go#953
Loading…
Reference in New Issue
No description provided.
Delete Branch "%!s(<nil>)"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
On the Git CLI, I can use
git push -o <option>
for examplegit push -o merge_request.create
to supply string options withpush
that are then processed on the server by i.e. thepost-receive
hook to perform additional actions, like create a pull request automatically after the push etc. See GitLab's options as an example.My failed attempt to recreate this with
git2go
:Is there a way to do this?