DEV Community

Discussion on: Syncing my "htdocs"-folder between two computers?

Collapse
 
vdsmartin profile image
Martin Vandersteen

Git was made for this + collaboration. Basically each project you have should be a git repository. You can then push/pull changes from those repositories and everything will be synced. It doesn't replace the folder, it just applies changes fetched from git to the files that changed. Nothing else.

There is really no reason not to use git nowadays !