similar to: [LLVMdev] GIT mirroring

Displaying 20 results from an estimated 9000 matches similar to: "[LLVMdev] GIT mirroring"

2011 Feb 01
0
[LLVMdev] GIT mirroring
On Feb 1, 2011, at 12:20 PM, Anton Korobeynikov wrote: > Hello Everyone, > > It seems given the decent amount of discussions it's time to make > small announcement. > > So, official git mirrors are available for some subset of LLVM > projects. They were used by some LLVM developers for couple of months > already and seem to be stable enough. Thank you for setting
2011 Feb 02
1
[LLVMdev] [cfe-dev] GIT mirroring
To rebuild, it would be enough to remove .git/svn/refs/remotes/git-svn/.rev_map.* My usual way to resync; $ git fetch llvm.org (is remote name) $ git update-ref refs/remotes/git-svn llvm.org/master $ git svn fetch Partial-rebuilding .git/svn/refs/remotes/git-svn/.rev_map.91177308-0d34-0410-b5e6-96231b3b80d8 ... Currently at 124651 = 071d3af0de273b1079d79f7f979264f28d567373 r124653 =
2011 Mar 21
4
[LLVMdev] GIT mirroring
I've been using Jakob's commands below, but it has stopped working for me. This happened roughly around the time when Anton added the other branches, but I'm not sure if that was the cause or not. The symptom is that the "git svn rebase -l" command does nothing except say that the master branch is already up to date, and "git svn dcommit" complains that files are
2011 Mar 10
2
[LLVMdev] [cfe-dev] GIT mirrors
> Just to be clear: we _really_ do not want all the sha's to change for trunk. Yes. That's why I said there will be other way :) In any case - please try clang.git once again. It should contain new branch/tag layout. If there will be some problems - let me know and I'll revert to prev. repository. -- With best regards, Anton Korobeynikov Faculty of Mathematics and Mechanics,
2011 Mar 21
0
[LLVMdev] GIT mirroring
On Mar 21, 2011, at 1:47 PM, Bob Wilson wrote: > I've been using Jakob's commands below, but it has stopped working for me. This happened roughly around the time when Anton added the other branches, but I'm not sure if that was the cause or not. The symptom is that the "git svn rebase -l" command does nothing except say that the master branch is already up to date, and
2011 Mar 21
1
[LLVMdev] GIT mirroring
On 03/21/2011 04:54 PM, Jakob Stoklund Olesen wrote: > > On Mar 21, 2011, at 1:47 PM, Bob Wilson wrote: > >> I've been using Jakob's commands below, but it has stopped working for me. This happened roughly around the time when Anton added the other branches, but I'm not sure if that was the cause or not. The symptom is that the "git svn rebase -l" command
2011 Jun 20
6
[LLVMdev] committing with the git mirror
Hi, This document tells me how to do a "read-only GIT clone of LLVM": http://llvm.org/docs/GettingStarted.html#git_mirror Can someone please document how to get read-write access using git or git-svn, if it's possible? Or do I still have to use plain old svn to commit? (I have tried searching the mailing list to find out how to do this, but it seems like a lot of the information
2011 Jun 20
0
[LLVMdev] committing with the git mirror
Good evening, Jay! ...Instructions, ... 1. git clone http://llvm.org/git/XXX.git (assume it "origin") 2. Create git authors file (assume /path/to/file/of/authors) with single line. foad = Jay Foad <jay.foad at gmail.com> Oh yeah, you should define your name and mailto same as described in llvm.org/git with case-sensitive. 3. Edit .git/config manually :p [svn]
2015 Jan 16
3
[LLVMdev] git-svn authorship (was: Howdy + GIT)
Erik> I am surprised noone has mentioned the one of the biggest Erik> advantages of Git which is proper author attribution for Erik> non-core and drive-by patch contributors. >From what I can make of the git-svn docs, that LLVM committers should be adding a "From: <email>" field to commit messages instead of "Patch by <name>". If the original author is
2011 Jul 08
0
[LLVMdev] git-svn dcommit Question
Dave, bty, don't you work on your branches, but master? I think it would be not "the right git way". ...Takumi ps. for me, to commit much commits; $ git checkout master $ git rebase -i mybranch (pick up commits interactive on master as cherry) $ make -C builddir check-all -j4 $ git svn dcommit -n
2011 Jul 05
4
[LLVMdev] git-svn dcommit Question
My git-svn fu is not very strong. In the course of preparing a set of AVX patches, I've committed several changes to my local LLVM git clone. I don't want to send all of those changes upstream right away. What's the best way to send just the first of those changes us using git-svn? dcommit appears to send all pending changes. Is there a way of branching/cherry-picking that will
2009 Aug 04
4
[LLVMdev] Mirroring of LLVM repository
>    git clone git://github.com/earl/llvm-mirror.git llvm >    cd llvm >    git config --add remote.origin.fetch '+refs/remotes/*:refs/remotes/*' >    git fetch >    git svn init https://llvm.org/svn/llvm-project/llvm/trunk >    git svn rebase --local This one worked perfectly. Thanks! I tried the same with the llvm-gcc-4.2 mirror, but "git svn rebase --local"
2010 Aug 04
3
[LLVMdev] git mirror
Do pushes to the LLVM git mirror get forwarded to the svn trunk automatically? For various reasons it may be more convenient for me to work on LLVM through git but I don't want to go through a lot of pain to send patches to trunk via git. It should be easy. Does anyone do their primary development via the git mirror? How well does it work? -Dave
2012 Apr 26
2
[LLVMdev] git branch release_31
Hi Anton, On Thu, Apr 26, 2012 at 4:05 PM, Anton Korobeynikov <anton at korobeynikov.info> wrote: > Sebastian, > >> I just saw that the git branch remotes/origin/release_31 has been created >> for llvm.  Unfortunately it is missing the right context: right now I can only >> see 11 patches in that branch with the last patch having no parent. >> >> Could
2009 Aug 03
3
[LLVMdev] Mirroring of LLVM repository
Dear All, Currently the load of llvm.org is too high. This influences the whole project services like buildbots, bugzilla, etc. It was found that this workload is possible caused by massive mirroring of LLVM SVN repository into git/hg/whatever. Please don't do that :) 1. Usually one don't need full history, this makes the mirroring much easier and faster (do you *really* need r5000? I
2014 Jul 31
2
[LLVMdev] suspicious typo in MCObjectDisassembler.cpp
my compiler gave me a warning in MCObjectDisassembler.cpp. it found a self-comparation in loop condition. I think it's a typo. the suspicious code was introduced by this patch: >From f176482752fbea3139394e280adfb10270dd3aac Mon Sep 17 00:00:00 2001 From: Ahmed Bougacha <ahmed.bougacha at gmail.com> Date: Wed, 21 Aug 2013 07:28:55 +0000 Subject: MC CFG: Support disassembly at
2009 Aug 04
0
[LLVMdev] Mirroring of LLVM repository
On Mon Aug 03 21:09:59 +0200 2009, Anton Korobeynikov wrote: > Currently the load of llvm.org is too high. This influences the whole > project services like buildbots, bugzilla, etc. It was found that this > workload is possible caused by massive mirroring of LLVM SVN > repository into git/hg/whatever. Please don't do that :) Let me add to what Anton said: I can only speak for
2014 Jul 31
2
[LLVMdev] suspicious typo in MCObjectDisassembler.cpp
Any chance of adding some missing test coverage here? That code was dead (& evidently untested) before... On Thu, Jul 31, 2014 at 11:37 AM, Eric Christopher <echristo at gmail.com> wrote: > I believe you are correct. Fixed thusly: > > dzur:~/sources/llvm> git svn dcommit > Committing to https://llvm.org/svn/llvm-project/llvm/trunk ... > M
2009 Aug 04
0
[LLVMdev] Mirroring of LLVM repository
On Tue Aug 04 20:56:18 +0200 2009, Rafael Espindola wrote: > >    git clone git://github.com/earl/llvm-mirror.git llvm > >    cd llvm > >    git config --add remote.origin.fetch '+refs/remotes/*:refs/remotes/*' > >    git fetch > >    git svn init https://llvm.org/svn/llvm-project/llvm/trunk > >    git svn rebase --local > > This one worked
2011 Feb 23
2
[LLVMdev] [cfe-dev] repo.or.cz GIT mirrors
Good morning, Dave. On Thu, Feb 24, 2011 at 4:17 AM, David A. Greene <greened at obbligato.org> wrote: > Do git repositories cloned from git-svn mirrors work properly?  For > example: > >                         svn >                          ^ >                          | >                          | >                          V >                       git-svn