version-control-migration

SVN Delete with wildcard?

拜拜、爱过 提交于 2019-12-07 12:29:22
问题 I'm migrating a VSS repository to SVN and inadvertently included all of the _vti_cnf, *.scc files in the first check-in. I'd like to remove these from SVN. (Not permanently, of course - just in the HEAD). The application in question is quite large, and finding and deleting these files on a folder-by-folder basis will take forever. Suggestions? There must be some obvious way to do this, but the proximity of the weekend is interfering with my higher brain functions. 回答1: Jonas' answer should

Migrating from Mercurial to Git

耗尽温柔 提交于 2019-12-07 08:52:27
问题 I know this question asked before several times and marked "possible duplicate", but none of them seems working correct. I tried fast-export and it gives error. Could anyone help How to migrate from Mercurial to Git? I need the history. It would be appreciated if it is listed step by step. UPDATE: I tried fast export: cd ~ git clone git://repo.or.cz/fast-export.git git init git_repo cd git_repo ~/fast-export/hg-fast-export.sh -r /path/to/old/mercurial_repo **[I get error in this line]** git

Migrating from Mercurial to Git

社会主义新天地 提交于 2019-12-05 17:30:44
I know this question asked before several times and marked "possible duplicate", but none of them seems working correct. I tried fast-export and it gives error. Could anyone help How to migrate from Mercurial to Git? I need the history. It would be appreciated if it is listed step by step. UPDATE: I tried fast export: cd ~ git clone git://repo.or.cz/fast-export.git git init git_repo cd git_repo ~/fast-export/hg-fast-export.sh -r /path/to/old/mercurial_repo **[I get error in this line]** git checkout HEAD this gives error: ..... hg-fast-export.sh: line 79: python: command not found Thanks for

SVN no longer writes .svn in all sub-folders?

六月ゝ 毕业季﹏ 提交于 2019-12-05 12:38:40
问题 I recently upgraded my SVN client from 1.6.9 to 1.7.2 and after converting to the new format, I noticed that there is no longer a .svn every sub-folders. For my particular configuration this is not very convenient. Is there a way to undo this or revert to the old behavior where each subfolder from a CO would have a .svn ? 回答1: Subversion 1.7 features a complete re-write of the working copy metadata management system of Subversion, code named WC-NG. The old system was one of the first parts of

SVN no longer writes .svn in all sub-folders?

不羁的心 提交于 2019-12-04 00:00:36
I recently upgraded my SVN client from 1.6.9 to 1.7.2 and after converting to the new format, I noticed that there is no longer a .svn every sub-folders. For my particular configuration this is not very convenient. Is there a way to undo this or revert to the old behavior where each subfolder from a CO would have a .svn ? Subversion 1.7 features a complete re-write of the working copy metadata management system of Subversion, code named WC-NG. The old system was one of the first parts of Subversion written, and over time had grown difficult to maintain and extend. WC-NG is intended to provide

Any tool to migrate repo from Vault to Subversion?

混江龙づ霸主 提交于 2019-11-29 22:29:28
Are there any tools to facilitate a migration from Sourcegear's Vault to Subversion ? I'd really prefer an existing tool or project (I'll buy!). Requirements: One-time migration only Full history with comments Optional: Some support for labels/branches/tags Relatively speedy. It can take hours but not days. Cost if available Bonus points if you can share personal experience related to this process. One of the reasons I'd like to do this is because we have lots of projects spread between Vault and Subversion (we're finally away from sourcesafe). It'd be helpful in some situations to be able to

Migrating from Mercurial to Subversion [duplicate]

一笑奈何 提交于 2019-11-29 14:17:02
Possible Duplicate: Converting from Mercurial to Subversion Hi. Does anyone know of a relatively painless way to migrate a Mercurial repo to a fresh Subversion repo? Thank you. You may want to use the Convert Extension . hg convert --dest-type svn mercurial_repo_name svn_repo_name This extension is distributed with Mercurial and understands CVS, Subversion, Git, Darcs, Monotone, Bazaar, GNU Arch, Perforce and Mercurial as source formats and Mercurial and Subversion as destination formats. Use hgsubversion ? 来源: https://stackoverflow.com/questions/2106204/migrating-from-mercurial-to-subversion

Any tool to migrate repo from Vault to Subversion?

爱⌒轻易说出口 提交于 2019-11-28 19:14:12
问题 Are there any tools to facilitate a migration from Sourcegear's Vault to Subversion? I'd really prefer an existing tool or project (I'll buy!). Requirements: One-time migration only Full history with comments Optional: Some support for labels/branches/tags Relatively speedy. It can take hours but not days. Cost if available Bonus points if you can share personal experience related to this process. One of the reasons I'd like to do this is because we have lots of projects spread between Vault

How do I migrate a Mercurial (Hg) source code repository to TFS?

爷,独闯天下 提交于 2019-11-28 12:40:48
This seems to be the opposite of what most people are trying to do. I want to export all of the changesets from a Mercurial (Hg) repository and import them into Team Foundation Server 2010 and include the history. I can't be the only one going to TFS, right? It looks like I might be able to export from Hg to Git and then Git to TFS. Is there a better way? You can (for bidirectional data-exchange) use SVNBridge 来源: https://stackoverflow.com/questions/8567038/how-do-i-migrate-a-mercurial-hg-source-code-repository-to-tfs

Migrating from Mercurial to Subversion [duplicate]

空扰寡人 提交于 2019-11-28 08:30:51
问题 This question already has answers here : Closed 8 years ago . Possible Duplicate: Converting from Mercurial to Subversion Hi. Does anyone know of a relatively painless way to migrate a Mercurial repo to a fresh Subversion repo? Thank you. 回答1: You may want to use the Convert Extension. hg convert --dest-type svn mercurial_repo_name svn_repo_name This extension is distributed with Mercurial and understands CVS, Subversion, Git, Darcs, Monotone, Bazaar, GNU Arch, Perforce and Mercurial as