From owner-freebsd-git@FreeBSD.ORG Mon Dec 1 06:11:15 2014 Return-Path: Delivered-To: freebsd-git@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id A8AC8A40; Mon, 1 Dec 2014 06:11:15 +0000 (UTC) Received: from mail-la0-x236.google.com (mail-la0-x236.google.com [IPv6:2a00:1450:4010:c03::236]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 2AD2368D; Mon, 1 Dec 2014 06:11:15 +0000 (UTC) Received: by mail-la0-f54.google.com with SMTP id pv20so3544351lab.13 for ; Sun, 30 Nov 2014 22:11:13 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:sender:date:message-id:subject:from:to:cc:content-type; bh=LVZ6yCBJcccI9MKsb8I3wOaJMAxFPjR0Tb6nPWIm1u4=; b=BJMycYWLCqCZQAUgJTTwfDKOZlEKme6pXEkDVyr333zTDxsZp36rkQVSV+wAOAVEqH H3Joup12y8VMTmVrm1F1cU9DWpoyPIZBOwwuh3m8o1I3FLpXirkUHyairyPuGn6xo0aV dJaMO2j7WCl7kzux8zAZ+RoVooBeHAXPw0J2tuBZajNwENpc8OjqT7OhSrTOwWBK8ZAt uar5iZdhTZJyYwpnUeiMgV55Ib5h0KHf2HxDR2uJCOTac8wQWXVjFiufNv0E0A3OX2md k5APssu705Ie9lJljv7MoDf1ogfBdWvxfJtYuU8o7DDi7m0s+zgntBtKzTGPoxtRlRh8 /b+A== MIME-Version: 1.0 X-Received: by 10.112.166.74 with SMTP id ze10mr4496229lbb.68.1417414272984; Sun, 30 Nov 2014 22:11:12 -0800 (PST) Sender: crodr001@gmail.com Received: by 10.112.130.168 with HTTP; Sun, 30 Nov 2014 22:11:12 -0800 (PST) Date: Sun, 30 Nov 2014 22:11:12 -0800 X-Google-Sender-Auth: 5QKJydGPVl7JopjdF4QaD74fI_M Message-ID: Subject: github and bugzilla integration testing From: Craig Rodrigues To: =?ISO-8859-2?Q?Bart=B3omiej_Rutkowski?= Content-Type: text/plain; charset=ISO-8859-1 X-Content-Filtered-By: Mailman/MimeDel 2.1.18-1 Cc: freebsd-git@freebsd.org, "bugmeister@freebsd.org" X-BeenThere: freebsd-git@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: Discussion of git use in the FreeBSD project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 01 Dec 2014 06:11:15 -0000 Hi, I did the following: (1) Went to: https://github.com/bartekrutkowski/dummy-test clicked on "Fork", and created a forked repo https://github.com/rodrigc/dummy-test (2) Checked out the code and created a branch somefix1: git clone https://github.com/rodrigc/dummy-test cd dummy-test git checkout -b somefix1 (3) Modified foobar.txt, committed the change and pushed the branch: git add foobar.txt git commit foobar.txt git push origin somefix1 (4) Went to https://github.com/rodrigc/dummy-test , selected somefix1 branch (5) Clicked "Compare & pull request". (6) Clicked "Create pull request" (7) This pull request was created: https://github.com/bartekrutkowski/dummy-test/pull/35 (8) Pull request 35 was closed. (9) The following bugs were opened in Bugzilla: https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=195546 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=195547 It looks like you are opening two bugs, when you only need to open one. Is this easy to fix? This is looking great! After you fix creating two bugs, what are the next steps for this to be accepted by bugmeister@ and integrated into the https://github.com/freebsd/freebsd and https://github.com/freebsd/ports repositories? -- Craig