Git and Dropbox - local repo

痞子三分冷 提交于 2019-12-04 14:33:06

问题


I have read noumerous threads and watched many videos on combining Dropbox and Git functionality. One such thread is this: Using Git and Dropbox together effectively?

Here is what i want to do:

  • I am currently working on a large personal project (only me, no need for encryption).
  • Work is done on two desktop computers (Win 7, Ubuntu) and one laptop (OSx).
  • I wish to have my files accesible from anywhere and under version control (git)
  • It would be great to have web-access to all the files (trough Dropbox.com), so there would be no need to install Git if I were to eg. borrow a computer.

Most of the guides use Dropbox to house the remote repo. This is OK, but then one has to install git on every computer to access the files, an there would be no direct file access via web.

Currently i have my files and the local repo in Dropbox (yes, I am aware of the size issue), and a remote repo on the schools ssh server. The idea is that i can choose to work on any computer (even without committing), and still be able to use computer #2 or #3 to continue work and commit from there. Overall backup is on the ssh server.

Any thoughts on this setup would be greatly appreciated. If anyone has a better idea, please let me know :)


回答1:


I really don't think Dropbox is a good solution for this. For what you want, I would probably git clone to a USB stick and carry that around.

Barring that, all the online git hosts that I know of (github, etc) allow you to download a tarball of whatever commit, and many of them allow you to edit files in-place.



来源:https://stackoverflow.com/questions/12086611/git-and-dropbox-local-repo

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