Dropbox and git, could it cause conflicts?

≡放荡痞女 提交于 2020-01-23 07:04:12

问题


What if one hosts a code repo in the Dropbox folder and shares it with others who collaborate. What happens if two people push to the Dropbox repo at the same time? Could this cause conflicts that mess up git?


回答1:


Dropbox is not the right kind of hosting service to share Git repositories. You can get all kinds of trouble in the moment when a conflict inside .git/ occurs (and such conflicts can even occur in a unchanged repo, for example when one runs git gc), since the content of the .git directory is not designed to be easily merged.

You can use https://bitbucket.org as an provider when you don't want public accessible repos.




回答2:


I tested this here: http://edinburghhacklab.com/2012/11/when-git-on-dropbox-conflicts-no-problem/

Conflicts are minor issues. When a corruption occurs no-one can push, so its not a fail silently situation. The fix is to remove all files in dropbox with the (XXX's conflicted copy) suffix.

After that is done someone's commit will not have gone through, so they should just git push again and it will all be fixed!

I have been using this setup for some time very successfully.




回答3:


First, they will never push to the repo at 'the same time'. One will always be first and the other will be second.

Next, that is exactly the type of problem git (and other VCS's) are specialized for. Their algorithms determine if the changes conflict, and if so by how much.

So, ideally, there may be issues, but the second pusher will be notified of these conflicts and asked to resolve them before they are able to successfully push/merge to the repo.



来源:https://stackoverflow.com/questions/8226256/dropbox-and-git-could-it-cause-conflicts

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!