I have project that is shared through Dropbox with someone who refuses to use git. However, I like the branch and rollback characteristics of git. For the moment, I the structure I have is the following:
Dropbox
├── Project
│ ├── Folder
│ │ ├── file1
│ │ ├── file2
│ ├── .git
│ ├── .gitattributes
│ ├── .gitignore
I also mount the Project
folder as a bind mount
somewhere else.
How could I move the git
folder outside the Dropbox and still keep everything working?