public inbox for gentoo-science@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-science] overlay and github out of sync again
@ 2014-07-02 10:40 François Bissey
  2014-07-02 11:16 ` Jauhien Piatlicki
  0 siblings, 1 reply; 8+ messages in thread
From: François Bissey @ 2014-07-02 10:40 UTC (permalink / raw
  To: gentoo-science

Hi,

The overlay are out of sync again. When jlec merged pynomo
earlier today it wasn’t pushed to the Gentoo overlay for a reason
or another.
And then I pushed a minor keywording for x64-macos and it did
go on the Gentoo overlay but not on github.

I cannot remember how to resolve the problem, do we have documentation
elsewhere than on the mailing list in post several years old for that?

François

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [gentoo-science] overlay and github out of sync again
  2014-07-02 10:40 [gentoo-science] overlay and github out of sync again François Bissey
@ 2014-07-02 11:16 ` Jauhien Piatlicki
  2014-07-02 11:19   ` François Bissey
  0 siblings, 1 reply; 8+ messages in thread
From: Jauhien Piatlicki @ 2014-07-02 11:16 UTC (permalink / raw
  To: gentoo-science

[-- Attachment #1: Type: text/plain, Size: 702 bytes --]

Hi François,

On 07/02/2014 12:40 PM, François Bissey wrote:
> Hi,
> 
> The overlay are out of sync again. When jlec merged pynomo
> earlier today it wasn’t pushed to the Gentoo overlay for a reason
> or another.
> And then I pushed a minor keywording for x64-macos and it did
> go on the Gentoo overlay but not on github.
> 
> I cannot remember how to resolve the problem, do we have documentation
> elsewhere than on the mailing list in post several years old for that?
> 

Resolved. Just merged the changes as we anyway use merges working with
pull requests. I mean, our git process is based on merges, so merging
unsynced branches does not create problems.

Regards,
Jauhien


[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 901 bytes --]

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [gentoo-science] overlay and github out of sync again
  2014-07-02 11:16 ` Jauhien Piatlicki
@ 2014-07-02 11:19   ` François Bissey
  2014-07-02 11:32     ` Jauhien Piatlicki
  0 siblings, 1 reply; 8+ messages in thread
From: François Bissey @ 2014-07-02 11:19 UTC (permalink / raw
  To: gentoo-science

Consider that I am the village idiot, you have to explain to me how you
integrated the two branches that each had a commit that the other didn’t
have.

François

On 2/07/2014, at 23:16, Jauhien Piatlicki <jauhien@gentoo.org> wrote:

> Hi François,
> 
> On 07/02/2014 12:40 PM, François Bissey wrote:
>> Hi,
>> 
>> The overlay are out of sync again. When jlec merged pynomo
>> earlier today it wasn’t pushed to the Gentoo overlay for a reason
>> or another.
>> And then I pushed a minor keywording for x64-macos and it did
>> go on the Gentoo overlay but not on github.
>> 
>> I cannot remember how to resolve the problem, do we have documentation
>> elsewhere than on the mailing list in post several years old for that?
>> 
> 
> Resolved. Just merged the changes as we anyway use merges working with
> pull requests. I mean, our git process is based on merges, so merging
> unsynced branches does not create problems.
> 
> Regards,
> Jauhien
> 



^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [gentoo-science] overlay and github out of sync again
  2014-07-02 11:19   ` François Bissey
@ 2014-07-02 11:32     ` Jauhien Piatlicki
  2014-07-02 13:12       ` Justin (jlec)
  0 siblings, 1 reply; 8+ messages in thread
From: Jauhien Piatlicki @ 2014-07-02 11:32 UTC (permalink / raw
  To: gentoo-science

[-- Attachment #1: Type: text/plain, Size: 911 bytes --]

Hi,

On 07/02/2014 01:19 PM, François Bissey wrote:
> Consider that I am the village idiot, you have to explain to me how you
> integrated the two branches that each had a commit that the other didn’t
> have.
> 

quite simple ;-)

consider you have two branches in your local repo: github-master and
gentoo-master, and you have two remotes: github and gentoo. Then you do
something like:

    git checkout github-master
    git pull
    git checkout gentoo-master
    git pull

Now your local branches are in sync with remote, you can do merging

    git checkout github-master
    git merge gentoo-master
    git push github github-master:master

    git checkout gentoo-master
    git merge github-master
    git push gentoo gentoo-master:master

You can do it with less commands, but I've written it this way, so
everything should be completely clear. )

Regards,
Jauhien


[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 901 bytes --]

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [gentoo-science] overlay and github out of sync again
  2014-07-02 11:32     ` Jauhien Piatlicki
@ 2014-07-02 13:12       ` Justin (jlec)
  2014-07-02 21:25         ` François Bissey
  0 siblings, 1 reply; 8+ messages in thread
From: Justin (jlec) @ 2014-07-02 13:12 UTC (permalink / raw
  To: gentoo-science

[-- Attachment #1: Type: text/plain, Size: 1169 bytes --]

On 02/07/14 13:32, Jauhien Piatlicki wrote:
> Hi,
> 
> On 07/02/2014 01:19 PM, François Bissey wrote:
>> Consider that I am the village idiot, you have to explain to me how you
>> integrated the two branches that each had a commit that the other didn’t
>> have.
>>
> 
> quite simple ;-)
> 
> consider you have two branches in your local repo: github-master and
> gentoo-master, and you have two remotes: github and gentoo. Then you do
> something like:
> 
>     git checkout github-master
>     git pull
>     git checkout gentoo-master
>     git pull
> 
> Now your local branches are in sync with remote, you can do merging
> 
>     git checkout github-master
>     git merge gentoo-master
>     git push github github-master:master
> 
>     git checkout gentoo-master
>     git merge github-master
>     git push gentoo gentoo-master:master
> 
> You can do it with less commands, but I've written it this way, so
> everything should be completely clear. )
> 
> Regards,
> Jauhien
> 

Hey guys,

as I wrote some month ago, I placed a script into the script dir called
"merge-dualHEAD" which we can use for syncing.

Justin


[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 1016 bytes --]

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [gentoo-science] overlay and github out of sync again
  2014-07-02 13:12       ` Justin (jlec)
@ 2014-07-02 21:25         ` François Bissey
  2014-07-02 21:38           ` François Bissey
  2014-07-03  8:44           ` Justin (jlec)
  0 siblings, 2 replies; 8+ messages in thread
From: François Bissey @ 2014-07-02 21:25 UTC (permalink / raw
  To: gentoo-science

On Wed, 02 Jul 2014 15:12:27 Justin wrote:
> On 02/07/14 13:32, Jauhien Piatlicki wrote:
> > Hi,
> > 
> > On 07/02/2014 01:19 PM, François Bissey wrote:
> >> Consider that I am the village idiot, you have to explain to me how you
> >> integrated the two branches that each had a commit that the other didn’t
> >> have.
> > 
> > quite simple ;-)
> > 
> > consider you have two branches in your local repo: github-master and
> > gentoo-master, and you have two remotes: github and gentoo. Then you do
> > 
> > something like:
> >     git checkout github-master
> >     git pull
> >     git checkout gentoo-master
> >     git pull
> > 
> > Now your local branches are in sync with remote, you can do merging
> > 
> >     git checkout github-master
> >     git merge gentoo-master
> >     git push github github-master:master
> >     
> >     git checkout gentoo-master
> >     git merge github-master
> >     git push gentoo gentoo-master:master
> > 
> > You can do it with less commands, but I've written it this way, so
> > everything should be completely clear. )
> > 
> > Regards,
> > Jauhien
> 
> Hey guys,
> 
> as I wrote some month ago, I placed a script into the script dir called
> "merge-dualHEAD" which we can use for syncing.
> 

Can we put a note on the github wiki about it then? Because I remembered there 
was something on the mailing list but yes it was months ago. Possibly a couple 
of years even.

Francois


^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [gentoo-science] overlay and github out of sync again
  2014-07-02 21:25         ` François Bissey
@ 2014-07-02 21:38           ` François Bissey
  2014-07-03  8:44           ` Justin (jlec)
  1 sibling, 0 replies; 8+ messages in thread
From: François Bissey @ 2014-07-02 21:38 UTC (permalink / raw
  To: gentoo-science

On Thu, 03 Jul 2014 09:25:47 François Bissey wrote:
> On Wed, 02 Jul 2014 15:12:27 Justin wrote:
> > On 02/07/14 13:32, Jauhien Piatlicki wrote:
> > > Hi,
> > > 
> > > On 07/02/2014 01:19 PM, François Bissey wrote:
> > >> Consider that I am the village idiot, you have to explain to me how you
> > >> integrated the two branches that each had a commit that the other
> > >> didn’t
> > >> have.
> > > 
> > > quite simple ;-)
> > > 
> > > consider you have two branches in your local repo: github-master and
> > > gentoo-master, and you have two remotes: github and gentoo. Then you do
> > > 
> > > something like:
> > >     git checkout github-master
> > >     git pull
> > >     git checkout gentoo-master
> > >     git pull
> > > 
> > > Now your local branches are in sync with remote, you can do merging
> > > 
> > >     git checkout github-master
> > >     git merge gentoo-master
> > >     git push github github-master:master
> > >     
> > >     git checkout gentoo-master
> > >     git merge github-master
> > >     git push gentoo gentoo-master:master
> > > 
> > > You can do it with less commands, but I've written it this way, so
> > > everything should be completely clear. )
> > > 
> > > Regards,
> > > Jauhien
> > 
> > Hey guys,
> > 
> > as I wrote some month ago, I placed a script into the script dir called
> > "merge-dualHEAD" which we can use for syncing.
> 
> Can we put a note on the github wiki about it then? Because I remembered
> there was something on the mailing list but yes it was months ago. Possibly
> a couple of years even.
> 
Ok only 5 months :)


^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [gentoo-science] overlay and github out of sync again
  2014-07-02 21:25         ` François Bissey
  2014-07-02 21:38           ` François Bissey
@ 2014-07-03  8:44           ` Justin (jlec)
  1 sibling, 0 replies; 8+ messages in thread
From: Justin (jlec) @ 2014-07-03  8:44 UTC (permalink / raw
  To: gentoo-science

[-- Attachment #1: Type: text/plain, Size: 1636 bytes --]

On 02/07/14 23:25, François Bissey wrote:
> On Wed, 02 Jul 2014 15:12:27 Justin wrote:
>> On 02/07/14 13:32, Jauhien Piatlicki wrote:
>>> Hi,
>>>
>>> On 07/02/2014 01:19 PM, François Bissey wrote:
>>>> Consider that I am the village idiot, you have to explain to me how you
>>>> integrated the two branches that each had a commit that the other didn’t
>>>> have.
>>>
>>> quite simple ;-)
>>>
>>> consider you have two branches in your local repo: github-master and
>>> gentoo-master, and you have two remotes: github and gentoo. Then you do
>>>
>>> something like:
>>>     git checkout github-master
>>>     git pull
>>>     git checkout gentoo-master
>>>     git pull
>>>
>>> Now your local branches are in sync with remote, you can do merging
>>>
>>>     git checkout github-master
>>>     git merge gentoo-master
>>>     git push github github-master:master
>>>     
>>>     git checkout gentoo-master
>>>     git merge github-master
>>>     git push gentoo gentoo-master:master
>>>
>>> You can do it with less commands, but I've written it this way, so
>>> everything should be completely clear. )
>>>
>>> Regards,
>>> Jauhien
>>
>> Hey guys,
>>
>> as I wrote some month ago, I placed a script into the script dir called
>> "merge-dualHEAD" which we can use for syncing.
>>
> 
> Can we put a note on the github wiki about it then? Because I remembered there 
> was something on the mailing list but yes it was months ago. Possibly a couple 
> of years even.
> 
> Francois
> 

It is already there

https://github.com/gentoo-science/sci/blob/master/CONTRIBUTING.md

Jusitn


[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 1016 bytes --]

^ permalink raw reply	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2014-07-03  8:44 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-07-02 10:40 [gentoo-science] overlay and github out of sync again François Bissey
2014-07-02 11:16 ` Jauhien Piatlicki
2014-07-02 11:19   ` François Bissey
2014-07-02 11:32     ` Jauhien Piatlicki
2014-07-02 13:12       ` Justin (jlec)
2014-07-02 21:25         ` François Bissey
2014-07-02 21:38           ` François Bissey
2014-07-03  8:44           ` Justin (jlec)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox