Hi again, 2015-10-12 23:49 GMT+02:00 Etienne Champetier <champetier.etie...@gmail.com> :
> Hi All, > > Here are some commands to make a "full" git repo, from the "trunk" repo > (the only complaint that everyone agrees on) > We keep git commit sha's for the trunk, and we add all branches/tags > > It needs some more tunning, but it's a good start :) > > 1) clone the trunk repo > git clone git://git.openwrt.org/openwrt.git openwrt-git-svn > cd openwrt-git-svn > > 2) init git svn > git svn init -T"/trunk" -t"/tags" -b"/branches" --prefix="svn/" svn:// > svn.openwrt.org/openwrt > > 3) tell git that we already have trunk > git update-ref refs/remotes/svn/trunk refs/remotes/origin/master > > 4) download all branches/tags (except trunk because we already have it) > git svn fetch > > resulting .git/config > >> [core] >> repositoryformatversion = 0 >> filemode = true >> bare = false >> logallrefupdates = true >> [remote "origin"] >> url = git://git.openwrt.org/openwrt.git >> fetch = +refs/heads/*:refs/remotes/origin/* >> [branch "master"] >> remote = origin >> merge = refs/heads/master >> [svn-remote "svn"] >> url = svn://svn.openwrt.org/openwrt >> fetch = trunk:refs/remotes/svn/trunk >> branches = branches/*:refs/remotes/svn/* >> tags = tags/*:refs/remotes/svn/tags/* >> > > > original SO post: http://stackoverflow.com/a/12251845 > > Good night > Etienne > Who has access/is running the script to mirror the svn on git.openwrt.org ? I would like to know the exact commands used to update the git mirror Here is an exemple of what we can have (I don't want to migrate to github, i'm using it out of simplicity) for now svn tags are git branches https://github.com/champtar/openwrt-full to do that i've added to my .git/config (after step 4) > [remote "champtar"] > url = g...@github.com:champtar/openwrt-full.git > fetch = +refs/heads/*:refs/remotes/champtar/* > push = refs/remotes/svn/*:refs/heads/* > and pushed with: git push --mirror champtar some more reading http://john.albin.net/git/convert-subversion-to-git http://wiki.gnucash.org/wiki/Git_Svn_Mirror Regards Etienne
_______________________________________________ openwrt-devel mailing list openwrt-devel@lists.openwrt.org https://lists.openwrt.org/cgi-bin/mailman/listinfo/openwrt-devel