From patchwork Fri May 13 23:37:34 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [RFC, 04/10] create-pull-request: rewrite known private URLs to public URLs Date: Fri, 13 May 2011 23:37:34 -0000 From: Darren Hart X-Patchwork-Id: 4005 Message-Id: <5be48b04615bb47fff1607df2ec1d33e33cf2aa7.1305329659.git.dvhart@linux.intel.com> To: openembedded-core@lists.openembedded.org Cc: Martin Jansa Rather than requiring users to have public remotes and private remotes when their development remotes are ssh based (and therefor unsuitable for a pull request URL), rewrite the ones we know about from ssh://git@ to git://. With this infrastructure in place, future patches can augment the list of known remotes for things like Git Hub, Gitorious, kernel.org, etc. Signed-off-by: Darren Hart Cc: Tom Rini Cc: Martin Jansa Cc: Otavio Salvador Cc: Richard Purdie --- scripts/create-pull-request | 10 ++++++++++ 1 files changed, 10 insertions(+), 0 deletions(-) diff --git a/scripts/create-pull-request b/scripts/create-pull-request index c6cf817..96cf04f 100755 --- a/scripts/create-pull-request +++ b/scripts/create-pull-request @@ -65,6 +65,16 @@ while getopts "b:hi:m:o:p:r:s:u:" OPT; do echo "ERROR: git config failed to find a url for '$REMOTE'" exit 1 fi + + # Rewrite known private URLs to public URLs + case "$REMOTE_URL" in + *ssh://git@git.pokylinux.org*) + REMOTE_URL=${REMOTE_URL/'ssh://git@'/'git://'} + ;; + *ssh://git@git.yoctoproject.org*) + REMOTE_URL=${REMOTE_URL/"ssh://git@"/"git://"} + ;; + esac ;; esac done