Re: [U-Boot] Attn Maintainers: git advise needed (how to fix messed up repo)

2011-11-30 Thread Mike Frysinger
On Tuesday 29 November 2011 23:12:02 Graeme Russ wrote: > On Wed, Nov 30, 2011 at 2:52 PM, Mike Frysinger wrote: > > On Tuesday 29 November 2011 18:48:08 Graeme Russ wrote: > >> At this point, how do you make the merge 'conflict free' without > >> re-writing the sub-repo? > > > > you can't. but t

Re: [U-Boot] Attn Maintainers: git advise needed (how to fix messed up repo)

2011-11-29 Thread Graeme Russ
Hi Mike, On Wed, Nov 30, 2011 at 2:52 PM, Mike Frysinger wrote: > On Tuesday 29 November 2011 18:48:08 Graeme Russ wrote: >> On Wed, Nov 30, 2011 at 10:35 AM, Mike Frysinger wrote: >> > On Tuesday 29 November 2011 17:57:39 Graeme Russ wrote: >> >> Now ${upstream}/master is always the 'gold standa

Re: [U-Boot] Attn Maintainers: git advise needed (how to fix messed up repo)

2011-11-29 Thread Mike Frysinger
On Tuesday 29 November 2011 18:48:08 Graeme Russ wrote: > On Wed, Nov 30, 2011 at 10:35 AM, Mike Frysinger wrote: > > On Tuesday 29 November 2011 17:57:39 Graeme Russ wrote: > >> Now ${upstream}/master is always the 'gold standard', so what does the > >> conflicted sub-repo dpo with the already pub

Re: [U-Boot] Attn Maintainers: git advise needed (how to fix messed up repo)

2011-11-29 Thread Graeme Russ
Hi Mike, On Wed, Nov 30, 2011 at 10:35 AM, Mike Frysinger wrote: > On Tuesday 29 November 2011 17:57:39 Graeme Russ wrote: >> 1) ${upstream}/master merges in multiple conflicting ${sub-repo}/master >> and the order that they get pulled results in a conflict > > when a merge is done and a con

Re: [U-Boot] Attn Maintainers: git advise needed (how to fix messed up repo)

2011-11-29 Thread Mike Frysinger
On Tuesday 29 November 2011 17:57:39 Graeme Russ wrote: > 1) ${upstream}/master merges in multiple conflicting ${sub-repo}/master > and the order that they get pulled results in a conflict when a merge is done and a conflict is thrown up, it's up to the guy doing the merge to resolve that co

Re: [U-Boot] Attn Maintainers: git advise needed (how to fix messed up repo)

2011-11-29 Thread Graeme Russ
Hi Andy, Mike, Thanks for all your help. I've managed to clean-up the x86 repo, but I still have a few lingering thoughts if you can spare a few more moments... I understand why a published (i.e. pushed onto the denx server) branch should never be altered and should, therefore, never require a fo

Re: [U-Boot] Attn Maintainers: git advise needed (how to fix messed up repo)

2011-11-29 Thread Mike Frysinger
On Tuesday 29 November 2011 05:51:52 Graeme Russ wrote: > However, I still get: > > error: refs/tags/2009.01-rc2 does not point to a valid object! if `git tag -d 2009.01-rc2` doesn't fix things, then try: rm .git/refs/tags/2009.01-rc2 sed -i /tags.2009.01-rc2/d .git/packed-refs -m

Re: [U-Boot] Attn Maintainers: git advise needed (how to fix messed up repo)

2011-11-29 Thread Graeme Russ
On 29/11/11 16:36, Mike Frysinger wrote: > On Tuesday 29 November 2011 00:04:12 Graeme Russ wrote: >> I think I need to do some reading up on 'rebase' versus 'merge' in git [snip] >>> then you'll have to do: >>>$ git checkout master >>>$ git rebase u-boot/master >>>$ git p

Re: [U-Boot] Attn Maintainers: git advise needed (how to fix messed up repo)

2011-11-29 Thread Graeme Russ
On 29/11/11 10:02, Mike Frysinger wrote: > On Monday 28 November 2011 17:31:19 Graeme Russ wrote: >> error: refs/tags/2009.01-rc2 does not point to a valid object! > > this tag seems to have bled into some people's repos ... i'd suggest you punt > it locally: > git tag -d 2009.01-rc2 > and

Re: [U-Boot] Attn Maintainers: git advise needed (how to fix messed up repo)

2011-11-28 Thread Mike Frysinger
On Tuesday 29 November 2011 00:04:12 Graeme Russ wrote: > I think I need to do some reading up on 'rebase' versus 'merge' in git rebase: rewrites the history by taking all of your local changes and placing them on top of the commit you've specified. this ultimately produces a much more linear a

Re: [U-Boot] Attn Maintainers: git advise needed (how to fix messed up repo)

2011-11-28 Thread Andy Fleming
Ignoring most of the context for the moment, I think fixing your problem requires: Start in your current, broken branch: 1) git branch save_broken_branch #just in case 2) git rebase -i u-boot/master Interactive rebase will show you a long list of commits that aren't yet in the mainline, even the

Re: [U-Boot] Attn Maintainers: git advise needed (how to fix messed up repo)

2011-11-28 Thread Graeme Russ
Hi Mike, On Tue, Nov 29, 2011 at 3:49 PM, Mike Frysinger wrote: > On Monday 28 November 2011 23:17:47 Graeme Russ wrote: >> My development is done using stacked git on development branches (I'm even >> considering using an entirely independent local git repo 'just in case') > > that's fine. it's

Re: [U-Boot] Attn Maintainers: git advise needed (how to fix messed up repo)

2011-11-28 Thread Mike Frysinger
On Monday 28 November 2011 23:17:47 Graeme Russ wrote: > My development is done using stacked git on development branches (I'm even > considering using an entirely independent local git repo 'just in case') that's fine. it's just a matter of how often you want to publish patches to the wider wor

Re: [U-Boot] Attn Maintainers: git advise needed (how to fix messed up repo)

2011-11-28 Thread Graeme Russ
Hi Mike, On Tue, Nov 29, 2011 at 3:01 PM, Mike Frysinger wrote: > On Monday 28 November 2011 22:35:24 Graeme Russ wrote: >> On Tue, Nov 29, 2011 at 2:31 PM, Mike Frysinger wrote: >> > the expected behavior of downstream users is apparently to always >> > fetch+rebase rather than fetch+merge (what

Re: [U-Boot] Attn Maintainers: git advise needed (how to fix messed up repo)

2011-11-28 Thread Mike Frysinger
On Monday 28 November 2011 22:35:24 Graeme Russ wrote: > On Tue, Nov 29, 2011 at 2:31 PM, Mike Frysinger wrote: > > the expected behavior of downstream users is apparently to always > > fetch+rebase rather than fetch+merge (what "pull" normally does). this > > is pretty unusual (and in most git ci

Re: [U-Boot] Attn Maintainers: git advise needed (how to fix messed up repo)

2011-11-28 Thread Graeme Russ
Hi Mike, On Tue, Nov 29, 2011 at 2:31 PM, Mike Frysinger wrote: > On Monday 28 November 2011 19:02:20 Graeme Russ wrote: >> > cd Source/U-Boot/x86 (my local version of the u-boot-x86 repo) >> > git fetch u-boot (as per the 'new' methodology of not having a seperate >> > u-boot branch) >> > git ch

Re: [U-Boot] Attn Maintainers: git advise needed (how to fix messed up repo)

2011-11-28 Thread Mike Frysinger
On Monday 28 November 2011 19:02:20 Graeme Russ wrote: > > cd Source/U-Boot/x86 (my local version of the u-boot-x86 repo) > > git fetch u-boot (as per the 'new' methodology of not having a seperate > > u-boot branch) > > git checkout master > > git rebase u-boot/master > > git push ssh://gu-...@git

Re: [U-Boot] Attn Maintainers: git advise needed (how to fix messed up repo)

2011-11-28 Thread Graeme Russ
Hi Mike, On Tue, Nov 29, 2011 at 10:43 AM, Mike Frysinger wrote: > On Monday 28 November 2011 18:20:51 Graeme Russ wrote: >> On Tue, Nov 29, 2011 at 10:16 AM, Andy Fleming wrote: >> > On Mon, Nov 28, 2011 at 5:13 PM, Mike Frysinger wrote: >> >> On Monday 28 November 2011 18:05:00 Graeme Russ wrot

Re: [U-Boot] Attn Maintainers: git advise needed (how to fix messed up repo)

2011-11-28 Thread Mike Frysinger
On Monday 28 November 2011 18:20:51 Graeme Russ wrote: > On Tue, Nov 29, 2011 at 10:16 AM, Andy Fleming wrote: > > On Mon, Nov 28, 2011 at 5:13 PM, Mike Frysinger wrote: > >> On Monday 28 November 2011 18:05:00 Graeme Russ wrote: > >>> On Tue, Nov 29, 2011 at 10:02 AM, Mike Frysinger wrote: > >>> >

Re: [U-Boot] Attn Maintainers: git advise needed (how to fix messed up repo)

2011-11-28 Thread Graeme Russ
On Tue, Nov 29, 2011 at 10:16 AM, Andy Fleming wrote: > On Mon, Nov 28, 2011 at 5:13 PM, Mike Frysinger wrote: >> On Monday 28 November 2011 18:05:00 Graeme Russ wrote: >>> On Tue, Nov 29, 2011 at 10:02 AM, Mike Frysinger wrote: >>> > On Monday 28 November 2011 17:31:19 Graeme Russ wrote: >>> >>

Re: [U-Boot] Attn Maintainers: git advise needed (how to fix messed up repo)

2011-11-28 Thread Andy Fleming
On Mon, Nov 28, 2011 at 5:13 PM, Mike Frysinger wrote: > On Monday 28 November 2011 18:05:00 Graeme Russ wrote: >> On Tue, Nov 29, 2011 at 10:02 AM, Mike Frysinger wrote: >> > On Monday 28 November 2011 17:31:19 Graeme Russ wrote: >> >> $ git fetch u-boot >> >> ... >> >> $ git rebase u-boot/master

Re: [U-Boot] Attn Maintainers: git advise needed (how to fix messed up repo)

2011-11-28 Thread Mike Frysinger
On Monday 28 November 2011 18:05:00 Graeme Russ wrote: > On Tue, Nov 29, 2011 at 10:02 AM, Mike Frysinger wrote: > > On Monday 28 November 2011 17:31:19 Graeme Russ wrote: > >> $ git fetch u-boot > >> ... > >> $ git rebase u-boot/master > >> ... > >> $ git push ssh://gu-...@git.denx.de/u-boot-x86 >

Re: [U-Boot] Attn Maintainers: git advise needed (how to fix messed up repo)

2011-11-28 Thread Graeme Russ
Hi Mike, On Tue, Nov 29, 2011 at 10:02 AM, Mike Frysinger wrote: > On Monday 28 November 2011 17:31:19 Graeme Russ wrote: >> error: refs/tags/2009.01-rc2 does not point to a valid object! > > this tag seems to have bled into some people's repos ... i'd suggest you punt > it locally: >        git

Re: [U-Boot] Attn Maintainers: git advise needed (how to fix messed up repo)

2011-11-28 Thread Mike Frysinger
On Monday 28 November 2011 17:31:19 Graeme Russ wrote: > error: refs/tags/2009.01-rc2 does not point to a valid object! this tag seems to have bled into some people's repos ... i'd suggest you punt it locally: git tag -d 2009.01-rc2 and then punt it remotely: git push :2009.01-rc

[U-Boot] Attn Maintainers: git advise needed (how to fix messed up repo)

2011-11-28 Thread Graeme Russ
Hi All, I've asked Wolfgang the following, but it looks like he's just too snowed under at the moment... Somehow I've managed to do something 'interesting' to the u-boot-x86 repository - It has duplicate patches. He's the sequence of events leading up to the problem $ git fetch u-boot remote: C

[U-Boot] ====Attn: business assistance is needed in Asia very urgent====

2011-10-30 Thread Tina Samson
Firstly,i will like to introduce my self to you.I am Mrs.Tina Samson,I'm from United Kingdom (England). I'm current working as the procurement manager to VALLEY VETERINARY & RANCH INC, I need the correspondence of a reliable Business partner. A trust worthy person that can handle business f

[U-Boot] ====Attn: business assistance is needed in Asia very urgent====

2011-10-24 Thread TINA SAMSON
-- Firstly,i will like to introduce my self to you.I am Mrs.Tina Samson,I'm from United Kingdom (England). I'm current working as the procurement manager to OAK VET LTD, I need the correspondence of a reliable Business partner. A trust worthy person that can handle business for me in Asia.

[U-Boot] Attn:

2011-08-22 Thread Douglas J. Flint.
Attn: This proposal is addressed directly to you as a private obligation that required you and should be treated as utmost Secret. I got your details from my private search after a careful review. I am Mr.Douglas J. Flint the Group Chairman of HSBC Holdings plc. I have a confidential brief

[U-Boot] Attn:

2011-08-21 Thread Douglas J. Flint.
Attn: This proposal is addressed directly to you as a private obligation that required you and should be treated as utmost Secret. I got your details from my private search after a careful review. I am Mr.Douglas J. Flint the Group Chairman of HSBC Holdings plc. I have a confidential bri

[U-Boot] ATTN

2011-01-06 Thread Anna Ludwig
Your email address has made you a winner of 11,000,000 USD, Contact our Agent Mr. Datson Galleon via: e-mail, datsongall...@bigstring.com, Tel: +1404-566-0625 for immediate response/details. ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.

[U-Boot] attn

2010-10-18 Thread john galvan
Hello I am Mr. John Galvan, I have a very urgent business proposal worth (£15,500,000.00 Pounds Sterlings) from private offshore bank (AIG Private Bank). Please email me at(johngalva...@yahoo.com.hk)for details Best Regards, Mr. John Galvan ___ U-Boot

[U-Boot] Attn

2010-03-18 Thread ½²±R¬w
Prize Won! (Five hundred and fifty two Thousand pounds sterling), kindly confirm receipt of this email, by forwarding Your Details as stated below to our events manager on Email: rennyharli...@live.com Name/Address/Tel number/Age/Occupation/Country of Origin. ___