专否 写文章

喷火的尾巴

Mar 26, 2019
Follow

给被Dropbox同步的项目添加git

最近遇到一个问题,

1. 我需要使用Dropbox同步代码文件

2. 我需要使用git管理代码

3. Dropbox不能指定不同步某些目录(.git)

解决办法是:

把代码对应的git放在不被Dropbox同步的其他目录;

假设代码存在Dropbox/project,本地提供一个Dropbox之外的目录/storage存放git信息。

在Dropbox/project目录下运行(要求git版本至少1.7.5)

git init --separate-git-dir /storage/project.git

参考:https://stackoverflow.com/questions/505467/can-i-store-the-git-folder-outside-the-files-i-want-tracked

喜欢这个文章 | 分享 | 新建跟帖