Re: Can I switch a git-svn clone from a file => http url?
From: Stephen Bannasch <hidden>
Date: 2016-06-15 22:44:27
Thanks Björn, At 5:17 PM +0200 4/2/08, Björn Steinbrink wrote:
On 2008.04.02 10:38:34 -0400, Stephen Bannasch wrote:quoted
Is there an operation I can now do to switch the base url from: file:///Path/to/svn/repository/projects to https://svn.concord.org/svn/projectsBasically, this should work: Change the URL to the repo in your .git/config.
Done
Use filter-branch to change all git-svn-id lines in the log entries.
I've just started using git so please forgive the beginner questions. What should I change the log entries to? Here's what the log entries look like now: $ git-filter-branch --msg-filter 'echo $GIT_COMMIT' ^MRewrite 89817efa5b290d375786a5af9a0dcc338df8a68c (1/13099)^MRewrite b090d1d40cba2c66a494d52e370317487d103484 (2/13099)^M Do you mean each one should just be re-written to a new SHA1 keys? If so how should I generate new SHA1 keys?
The filter-branch call should use the --msg-filter option to change the log entries and should apply to all the svn branches/tags/trunk (or just use " -- --all", if there's nothing that may not be filtered). HTH Björn -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html