https://gcc.gnu.org/bugzilla/show_bug.cgi?id=85440

kargl at gcc dot gnu.org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |kargl at gcc dot gnu.org

--- Comment #8 from kargl at gcc dot gnu.org ---
(In reply to Dennis Clarke from comment #6)
> Following the instructions at https://gcc.gnu.org/wiki/GitMirror there is
> no branch anywhere that claims to be a version 8 type. 
> 
> Where is this ver 8 code hidden away ?

mkdir gcc; cd gcc
git init
# By default pulls all heads (trunk, release branches, git-only branches, a few
other selected SVN branches)
git remote add origin git://gcc.gnu.org/git/gcc.git
# Also include all the other SVN branches (adds about 0.2GB)
git config --add remote.origin.fetch 'refs/remotes/*:refs/remotes/svn/*'
git fetch
git checkout -b trunk svn/trunk   <----- This is 8.0.

When 8.1 is released, trunk will become 9.0.

Reply via email to