Re: Write access to supercollider-quarks?

[email protected] Sat, 19 May 2018 02:01:45 -0400
Newsgroups gmane.comp.audio.supercollider.devel
Message-ID <CAB_zQYuz_1PtfVyrF8P6b9=Uc2XCoXuyGMmDJK59jwmqrGDYbg@mail.gmail.com>
On Fri, May 18, 2018 at 9:07 PM, <[email protected]> wrote:

> Could we consider giving members of the "supercollider" organization write
> access to all repositories in supercollider-quarks?
>

I'm fine with this, but I am not an owner in that organization so I can't
make the change. The owners are Alberto, Josh Parmenter, Nathan, Julian,
Jakob Leben, and LFSaw.


> I have a one line change for MP3. Steps to file the PR:
>
> 1. Fork the repository into my account.
> 2. Fiddle with the git remotes in my local repository.
> 3. Push the topic branch.
> 4. File PR.
>
> I would like to do without steps 1 and 2 -- I don't see why I shouldn't be
> able to push the topic branch directly to the repository under sc-quarks.
>

I would recommend hub (https://hub.github.com/) for making 1 and 2 easier
when you have to. You can do all four steps from the command line with hub:

git clone https://github.com/supercollider-quarks/MP3
cd MP3
git remote rename origin upstream # to get typical remote naming
hub fork --remote-name=origin

# do work

git push -u origin topic/mytopic
hub pull-request # see man page for many helpful options, --browse is
probably the best

-Brian