Gentoo Archives: gentoo-science

From: "François Bissey" <frp.bissey@×××××.com>
To: gentoo-science@l.g.o
Subject: Re: [gentoo-science] overlay and github out of sync again
Date: Wed, 02 Jul 2014 21:25:52
Message-Id: 4312263.unIChA6nMQ@qcd-nzi3
In Reply to: Re: [gentoo-science] overlay and github out of sync again by "Justin (jlec)"
1 On Wed, 02 Jul 2014 15:12:27 Justin wrote:
2 > On 02/07/14 13:32, Jauhien Piatlicki wrote:
3 > > Hi,
4 > >
5 > > On 07/02/2014 01:19 PM, François Bissey wrote:
6 > >> Consider that I am the village idiot, you have to explain to me how you
7 > >> integrated the two branches that each had a commit that the other didn’t
8 > >> have.
9 > >
10 > > quite simple ;-)
11 > >
12 > > consider you have two branches in your local repo: github-master and
13 > > gentoo-master, and you have two remotes: github and gentoo. Then you do
14 > >
15 > > something like:
16 > > git checkout github-master
17 > > git pull
18 > > git checkout gentoo-master
19 > > git pull
20 > >
21 > > Now your local branches are in sync with remote, you can do merging
22 > >
23 > > git checkout github-master
24 > > git merge gentoo-master
25 > > git push github github-master:master
26 > >
27 > > git checkout gentoo-master
28 > > git merge github-master
29 > > git push gentoo gentoo-master:master
30 > >
31 > > You can do it with less commands, but I've written it this way, so
32 > > everything should be completely clear. )
33 > >
34 > > Regards,
35 > > Jauhien
36 >
37 > Hey guys,
38 >
39 > as I wrote some month ago, I placed a script into the script dir called
40 > "merge-dualHEAD" which we can use for syncing.
41 >
42
43 Can we put a note on the github wiki about it then? Because I remembered there
44 was something on the mailing list but yes it was months ago. Possibly a couple
45 of years even.
46
47 Francois

Replies

Subject Author
Re: [gentoo-science] overlay and github out of sync again "François Bissey" <frp.bissey@×××××.com>
Re: [gentoo-science] overlay and github out of sync again "Justin (jlec)" <jlec@g.o>