[Mesa-dev] [PATCH 0/9] remove mfeatures.h file

Kenneth Graunke kenneth at whitecape.org
Tue Feb 26 10:42:44 PST 2013


On 02/25/2013 06:48 PM, Brian Paul wrote:
> On 02/25/2013 06:57 PM, Ian Romanick wrote:
>> On 02/25/2013 05:17 PM, Brian Paul wrote:
>>> On 02/25/2013 11:10 AM, Jordan Justen wrote:
>>>> Reviewed-by: Jordan Justen<jordan.l.justen at intel.com>
>>>>
>>>> On Sat, Feb 23, 2013 at 7:29 AM, Brian Paul<brianp at vmware.com> wrote:
>>>>> This series removes the dependencies on the mfeatures.h file and the
>>>>> file
>>>>> itself.
>>>>>
>>>>> I'd appreciated someone doing a test build of this series to
>>>>> double-check my
>>>>> work.
>>>>
>>>> Do you have a public repo where you push changesets like this?
>>>
>>> No, but here's a tarball of the patch series. I added a tenth patch
>>> that touches intel_screen.c
>>
>> In the future, a git tree for a large patch series would be a lot
>> better. A lot of times git-am will fail if the tip of the tree has
>> changed much since the patches were sent out. That can make it a lot
>> harder to build, test, etc. large series.
>
> I could simply put the code on a feature branch tomorrow.  I need to
> call it a day soon.
>
> I've never setup a git repo for my home fdo.o account.  To be honest,
> I'd have to do some digging around to figure that out.
>
> -Brian

It's pretty easy:

$ ssh people.freedesktop.org

Create the repository:
brianp at annarchy:~$ git init --bare mesa.git
brianp at annarchy:~$ touch mesa.git/git-daemon-export-ok
brianp at annarchy:~$ exit

Then add it as a remote and push some things:
$ cd ~/path/to/mesa
$ git remote add brianp people.freedesktop.org:~brianp/mesa.git
$ git push brianp master

--Ken


More information about the mesa-dev mailing list