From owner-svn-src-user@freebsd.org Thu Jan 12 17:52:56 2017 Return-Path: Delivered-To: svn-src-user@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 74D7BCAD70E for ; Thu, 12 Jan 2017 17:52:56 +0000 (UTC) (envelope-from uqs@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 372531313; Thu, 12 Jan 2017 17:52:56 +0000 (UTC) (envelope-from uqs@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v0CHqtlp086537; Thu, 12 Jan 2017 17:52:55 GMT (envelope-from uqs@FreeBSD.org) Received: (from uqs@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v0CHqsv0086526; Thu, 12 Jan 2017 17:52:54 GMT (envelope-from uqs@FreeBSD.org) Message-Id: <201701121752.v0CHqsv0086526@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: uqs set sender to uqs@FreeBSD.org using -f From: Ulrich Spoerlein Date: Thu, 12 Jan 2017 17:52:54 +0000 (UTC) To: src-committers@freebsd.org, svn-src-user@freebsd.org Subject: svn commit: r311991 - in user/uqs/git_conv/svn2git/.git: . logs objects refs refs/heads refs/remotes refs/remotes/origin refs/remotes/svn-all-fast-export refs/tags X-SVN-Group: user MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-user@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: "SVN commit messages for the experimental " user" src tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Jan 2017 17:52:56 -0000 Author: uqs Date: Thu Jan 12 17:52:54 2017 New Revision: 311991 URL: https://svnweb.freebsd.org/changeset/base/311991 Log: Add minimal git config/structure that can be used to fetch upstream Use "git fetch; git fetch origin" to fetch all required objects and refs, this will print a bunch of errors once, but then work like any other pristine git clone. Added: user/uqs/git_conv/svn2git/.git/ user/uqs/git_conv/svn2git/.git/FETCH_HEAD user/uqs/git_conv/svn2git/.git/HEAD user/uqs/git_conv/svn2git/.git/ORIG_HEAD user/uqs/git_conv/svn2git/.git/config user/uqs/git_conv/svn2git/.git/description user/uqs/git_conv/svn2git/.git/logs/ user/uqs/git_conv/svn2git/.git/objects/ user/uqs/git_conv/svn2git/.git/refs/ user/uqs/git_conv/svn2git/.git/refs/heads/ user/uqs/git_conv/svn2git/.git/refs/heads/master user/uqs/git_conv/svn2git/.git/refs/remotes/ user/uqs/git_conv/svn2git/.git/refs/remotes/origin/ user/uqs/git_conv/svn2git/.git/refs/remotes/origin/HEAD user/uqs/git_conv/svn2git/.git/refs/remotes/origin/master user/uqs/git_conv/svn2git/.git/refs/remotes/svn-all-fast-export/ user/uqs/git_conv/svn2git/.git/refs/remotes/svn-all-fast-export/master user/uqs/git_conv/svn2git/.git/refs/remotes/svn-all-fast-export/missing-revprops user/uqs/git_conv/svn2git/.git/refs/tags/ Added: user/uqs/git_conv/svn2git/.git/FETCH_HEAD ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ user/uqs/git_conv/svn2git/.git/FETCH_HEAD Thu Jan 12 17:52:54 2017 (r311991) @@ -0,0 +1,2 @@ +437beb493db3b1cb532ca5807264cd4403a44157 branch 'master' of https://github.com/svn-all-fast-export/svn2git +4d494101dc0a6abb918695422d2e2f0cd400d9b7 not-for-merge branch 'missing-revprops' of https://github.com/svn-all-fast-export/svn2git Added: user/uqs/git_conv/svn2git/.git/HEAD ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ user/uqs/git_conv/svn2git/.git/HEAD Thu Jan 12 17:52:54 2017 (r311991) @@ -0,0 +1 @@ +ref: refs/heads/master Added: user/uqs/git_conv/svn2git/.git/ORIG_HEAD ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ user/uqs/git_conv/svn2git/.git/ORIG_HEAD Thu Jan 12 17:52:54 2017 (r311991) @@ -0,0 +1 @@ +437beb493db3b1cb532ca5807264cd4403a44157 Added: user/uqs/git_conv/svn2git/.git/config ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ user/uqs/git_conv/svn2git/.git/config Thu Jan 12 17:52:54 2017 (r311991) @@ -0,0 +1,14 @@ +[core] + repositoryformatversion = 0 + filemode = true + bare = false + logallrefupdates = true +[remote "svn-all-fast-export"] + url = https://github.com/svn-all-fast-export/svn2git.git + fetch = +refs/heads/*:refs/remotes/svn-all-fast-export/* +[remote "origin"] + url = git@github.com:freebsd/svn2git.git + fetch = +refs/heads/*:refs/remotes/origin/* +[branch "master"] + remote = svn-all-fast-export + merge = refs/heads/master Added: user/uqs/git_conv/svn2git/.git/description ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ user/uqs/git_conv/svn2git/.git/description Thu Jan 12 17:52:54 2017 (r311991) @@ -0,0 +1 @@ +A fast-import based converter for an svn repo to git repos Added: user/uqs/git_conv/svn2git/.git/refs/heads/master ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ user/uqs/git_conv/svn2git/.git/refs/heads/master Thu Jan 12 17:52:54 2017 (r311991) @@ -0,0 +1 @@ +e9699437cad516b3b9494443f3132c15b8ef4485 Added: user/uqs/git_conv/svn2git/.git/refs/remotes/origin/HEAD ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ user/uqs/git_conv/svn2git/.git/refs/remotes/origin/HEAD Thu Jan 12 17:52:54 2017 (r311991) @@ -0,0 +1 @@ +ref: refs/remotes/origin/master Added: user/uqs/git_conv/svn2git/.git/refs/remotes/origin/master ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ user/uqs/git_conv/svn2git/.git/refs/remotes/origin/master Thu Jan 12 17:52:54 2017 (r311991) @@ -0,0 +1 @@ +e9699437cad516b3b9494443f3132c15b8ef4485 Added: user/uqs/git_conv/svn2git/.git/refs/remotes/svn-all-fast-export/master ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ user/uqs/git_conv/svn2git/.git/refs/remotes/svn-all-fast-export/master Thu Jan 12 17:52:54 2017 (r311991) @@ -0,0 +1 @@ +437beb493db3b1cb532ca5807264cd4403a44157 Added: user/uqs/git_conv/svn2git/.git/refs/remotes/svn-all-fast-export/missing-revprops ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ user/uqs/git_conv/svn2git/.git/refs/remotes/svn-all-fast-export/missing-revprops Thu Jan 12 17:52:54 2017 (r311991) @@ -0,0 +1 @@ +4d494101dc0a6abb918695422d2e2f0cd400d9b7