Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 12 Jan 2017 17:52:54 +0000 (UTC)
From:      Ulrich Spoerlein <uqs@FreeBSD.org>
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
Message-ID:  <201701121752.v0CHqsv0086526@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201701121752.v0CHqsv0086526>