bcpierce00/unison

Unison file synchronizer

View on GitHub ↗Jump to charts ↓Open shareable report

Summary Information

Updated 30 minutes ago
Added to GitGenius on September 12th, 2026
Created on February 24th, 2016
Open Issues & Pull Requests: 105 (+0)
GitHub issues: Enabled
Number of forks: 272
Total Stargazers: 5,472 (+0)
Total Subscribers: 81 (+0)

Repository Insights (GitGenius)

Median issue/PR response: 3.4 hours
Mean response time: 42.8 days
90th percentile: 159.1 days
Tracked items: 77

How this project is maintained

Around half of the issues opened in the past year never receive a reply. 44% of open issues come from outside the core team, a mix of external reports and the maintainers' own roadmap. Work labelled "feedback" is answered fastest, typically in under an hour, while "enhancement" waits about 4 days. Only 5% of issues opened in the past year have been closed. Three people close 93% of everything that gets resolved.

Charts & Analytics

Fetching additional details & charts...

Issue Activity (beta)

Open issues: 34
New in 7 days: 0
Closed in 7 days: 0
Avg open age: 931 days
Stale 30+ days: 33
Stale 90+ days: 29

Recent activity

Opened in 7 days: 0
Closed in 7 days: 0
Comments in 7 days: 0
Events in 7 days: 0

Top labels

  • enhancement (29)
  • impact-low (27)
  • defect (26)
  • effort-high (21)
  • wontfix (20)
  • feedback (15)
  • discuss (10)
  • effort-medium (10)

Most active issues this week

No issue events were indexed in the last 7 days.

Detailed Description

Unison is a file synchronization tool that keeps two replicas of files and directories on different hosts or disks in sync by detecting and propagating changes bidirectionally.

Unison solves the problem of maintaining synchronized copies of data across multiple machines or storage locations while allowing independent modifications to both replicas. Unlike simple mirroring tools, it detects conflicting changes and can automatically propagate non-conflicting updates. The tool works by comparing file metadata and content, communicating typically over SSH or direct TCP connections, and uses compression protocols similar to rsync to minimize bandwidth usage when transferring updates to large files. It maintains careful state management to remain resilient to network failures and abnormal termination.

Unison suits users who need bidirectional synchronization across platforms—it runs on POSIX-compliant systems and Windows—and who value offline access to already-synchronized data. It is particularly useful for scenarios where kernel modifications or superuser privileges are unavailable, since it operates as a user-level program using standard system calls. The tool works well over slow network links and can run in repeat mode with filesystem monitoring for near-real-time synchronization. Choose Unison if you need precise control over conflict detection and resolution rather than automatic overwriting, and if you require a clear, formally specified synchronization protocol.

Development of the tool is maintained by a very small team, with an estimated 2.5 people and 0.1 full-time equivalents actively working on it. The project emphasizes high-quality bug reports and proposed fixes from the community, and directs user support questions to dedicated mailing lists rather than the issue tracker. The README explicitly requests that contributors read the wiki and contributing guidelines before opening issues, indicating a structured but resource-constrained maintenance approach.