ability to create pull request #8
Labels
No Label
kind/breaking
kind/bug
kind/build
kind/dependency
kind/deployment
kind/docs
kind
enhancement
kind
feature
kind/proposal
kind
question
kind
refactor
kind/security
kind/testing
kind/translation
priority/critical
priority/high
priority/low
priority/medium
reviewed/duplicate
reviewed/invalid
reviewed/wontfix
skip-changelog
status/blocked
status/has-backport
status/has-pull
status/needs-backport
status/needs-feedback
status/needs-reviews
status/wip
upstream/gitea
upstream/sdk
No Milestone
No Assignees
3 Participants
Notifications
Due Date
No due date set.
Dependencies
No dependencies set.
Reference: gitea/tea#8
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?
Author: @vtolstov
do you plan to add ability to create pull request via tea?
See #34 for a stub
tea pr create this master
-> current branch into mastertea pr create brancha branch2
pull from brancha into branch2tea pr create brancha fork:branch2
pull from brancha into fork's branch branch2suggestions?
I'd try to mimick interface of "hub" (from github).
That one is:
hub pull-request -b base
to create a request to pull from current branch tobase
How the "current branch" is found on the remote I'm not sure, but I guess it depends on the "upstream" defined for the branch.... Note that by default (
hub pull-request
) you don't need to specify the target (master
, in your example) as that one I guess is derived from thedefault branch
for the project.