{% extends "repo_master.html" %} {% from "_formhelper.html" import render_bootstrap_field %} {% block title %}Remote Pull request {{ repo.namespace + '/' if repo.namespace }}{{ repo.name }}{% endblock %} {% set tag = "home" %} {% block repo %}

New remote pull-request

*Remote pull-requests* are pull-requests from projects hosted somewhere else than this Pagure instance.

If you would like to submit a new remote pull-request to this project, please provide the URL for the remote Git repository and the branch you want to merge.

If you wish to create a pull-request from a fork to a project on pagure, visit your fork, go to the branch where you pushed your changes, it will show the commits that can be merged with a red asterisk and click on the "Pull-Request" button.

{% if form %}
{{ render_bootstrap_field( form.title, size=80, field_description="title of the pull-request") }} {{ render_bootstrap_field( form.git_repo, size=80, field_description="public url to the git repository containing the changes to merge") }} {{ render_bootstrap_field(form.branch_from, size=80) }} To branch:

{{ form.csrf_token }}

{% endif %} {% endblock %}