开发者

Use Git for my own and Subversion in company

开发者 https://www.devze.com 2022-12-18 09:47 出处:网络
I would like to use Git for my own purpose and I must use Subversion repository in my company. I know that there is \'git svn\' command but it requires lineral history also in git repository. The prob

I would like to use Git for my own purpose and I must use Subversion repository in my company. I know that there is 'git svn' command but it requires lineral history also in git repository. The problem with that is that I would like: - to synchronize git repository with another my git repository on my remote disk so that I can synchronize it with another git repository on different computer, - and the most important: I would like to commit frequently in my git repository and when I decide that this small steps are worth to commit (big enough to share) I would like to commit them to svn but with only one commit... So I wouldn't like to show all my git (mayby sometimes stupid, too small commits just to remember something) in svn, - and with 'git svn' I cannot use branches (because when I merge them with master, master will not have lineral history).

Please help... Maybe there is some workflow in which I can use git in it's full glory and svn to commit bigger (not my 'private'... maybe very small changes and which for some time casue that cod doesn't compile) changes to my company 开发者_如何学编程repository.

Thanks in advance!


I would like to synchronize git repository with another my git repository on my remote disk so that I can synchronize it with another git repository on different computer.

Try:

git remote add external-repo ssh://host/path/to/git/repo.git
git push origin external-repo

I would like to commit frequently in my git repository and when I decide that this small steps are worth to commit (big enough to share) I would like to commit them to svn but with only one commit.

No sweat. Collapse multiple commits with git rebase -i (this is called "squashing") and decide whether you want to keep, throw away, or squash each commit into a larger one. It's very helpful for getting organized before pushing to an external repo. The -i is for "interactive" mode.

with 'git svn' I cannot use branches (because when I merge them with master, master will not have lineral history).

That's not true. Just set up a branch on git for each branch you want to track with svn. In the opposite direction, you're only pushing one branch at a time anyway.


I work this way all the time at my company (really just can't stand subversion anymore). What makes you think you can't use branches with git svn? Not only can you use them, you can commit from them directly back to subversion.

To do the merging of commits you'd use something like git rebase remotes/trunk --interactive and squash commits together. However you can't maintain both your expanded version and your condensed versions at the same time. You either get all the little tiny commits or you get the squashed ones.


Instead of interactive rebase you can also use git merge --squash on the “official” branch.

git checkout master
git merge --squash development

This has the advantage that it won’t destroy your development history. You can now create a large commit containing all your changes, or you can reset the index (using git reset) and use git add -p or git gui to create any number of separate commits from your branch which you would then commit normally to master and git-svn dcommit them when appropriate.


What I do (and the easiest way to do this) is to not attempt to manage two methods of source control at once. I use git for my own personal version control. A few times a week, when i'm ready to commit to the central repository, I check out the master branch in git and commit it to TFS. Changes from the server are checked out into my dev branch and merged back into my code.

It isn't elegant, by any means, but since I'm only checkout/checkin from the central repo a few times a week, it works perfectly well.

0

精彩评论

暂无评论...
验证码 换一张
取 消