bestK / git-syncer

Git-Syncer is a tool that automatically syncs local files to Git repositories based on configurable schedules.
0 stars 0 forks source link

能否检测文件变化,自动和远程同步 #1

Open Jamesun921 opened 5 hours ago

Jamesun921 commented 5 hours ago

检测文件/目录增删改查,然后自动和服务器同步。 当然要做些简化,比如假如都是单向同步给服务器,避免冲突问题

bestK commented 5 hours ago

这些都有,检测变化是否通过 git status 命令实现的,同步前先拉后推,冲突问题可配置不同策略 https://github.com/bestK/git-syncer/blob/cda812567b8fd57919676c815ef6846f5affba2b/config.example.yaml#L18-L29