Automated, paranoid git backups for students and casual coding.
Project description
🔭 Git Pulsar (v0.7.0)
Automated, paranoid git backups for students and casual coding.
Git Pulsar is a background daemon that wakes up every 15 minutes, commits your work to a secluded wip/pulsar branch, and pushes it to your remote. It ensures that even if your laptop dies, your uncommitted work is safe on the server—without polluting your main history.
⚡ Features
- Set & Forget: Runs silently in the background via
launchd(macOS) orsystemd(Linux). - Non-Intrusive: Commits are pushed to a separate branch (
wip/pulsar). Yourmainbranch stays clean. - Smart Checks:
- Detects if the repo is busy (merging/rebasing) and yields.
- Prevents accidental upload of large files (>100MB).
- Auto-generates
.gitignorefor Python/LaTeX projects if missing.
- System Integration: Native desktop notifications on success or failure.
📦 Installation
macOS (Recommended)
Install via Homebrew to handle the daemon registration automatically.
brew tap jacksonfergusondev/tap
brew install git-pulsar
brew services start git-pulsar
Linux / Generic
Install via uv (or pipx) to isolate the environment, then register the systemd service.
uv tool install git-pulsar
git-pulsar install-service --interval 300 # Optional: Run every 5 mins (default: 900s)
🚀 Usage
1. Activate a Repository
Navigate to any project you want to back up and initialize Pulsar.
cd ~/University/Astro401
git-pulsar
This registers the path in the local registry (~/.git_pulsar_registry) and ensures the wip/pulsar branch exists.
2. Work Normally
You do not need to do anything else. Pulsar wakes up every 15 minutes to:
- Check for changes.
- Commit them to
wip/pulsar. - Push to
origin.
3. Manual Backup
If you want to force a backup immediately (e.g., right before closing your laptop), run:
git-pulsar now
4. Restore a File
If you messed up a file and need to grab the latest version from the backup:
git-pulsar restore src/main.py
This pulls the file from wip/pulsar into your working directory. It will warn you if you have uncommitted changes.
5. Finalize Your Work
When you are ready to submit or merge your work back to main:
git-pulsar finalize
This automates the squashing process: it switches to main, merges your backup history into a single commit, and resets the backup branch so you are ready for the next assignment.
⚙️ Configuration
You can customize global behavior by creating ~/.config/git-pulsar/config.toml.
Default Configuration:
[core]
backup_branch = "wip/pulsar"
remote_name = "origin"
[limits]
# 5MB log rotation
max_log_size = 5242880
# Skip files larger than 100MB
large_file_threshold = 104857600
🛑 Stopping the Service
To deregister the background daemon and stop all backups:
git-pulsar uninstall-service
🔧 Requirements
- Python 3.12+
- Headless Auth: Your git authentication must be non-interactive (SSH keys or a cached Credential Helper). Pulsar runs in the background and cannot prompt for passwords.
🛠️ Development
This project uses modern Python tooling.
-
Clone and Install Dependencies:
git clone https://github.com/jacksonferguson/git-pulsar.git cd git-pulsar uv sync
-
Setup Pre-commit Hooks:
pre-commit install -
Run Tests: We use
pytestfor testing andhypothesisfor property-based testing.uv run pytest
📂 Project Structure
.
├── LICENSE
├── pyproject.toml
├── README.md
├── uv.lock
├── src
│ ├── __init__.py
│ ├── cli.py # Entry point & repo setup logic
│ ├── daemon.py # Core backup loop & git operations
│ └── service.py # Background service installer (launchd/systemd)
└── tests
├── test_cli.py
├── test_daemon.py
└── test_properties.py
📄 License
This project is licensed under the MIT License.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file git_pulsar-0.7.0.tar.gz.
File metadata
- Download URL: git_pulsar-0.7.0.tar.gz
- Upload date:
- Size: 56.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2cf936f6657d5c0227847c9db96d123d190ff9f629d981a57d734a5b0253729e
|
|
| MD5 |
1e6cecedce355711224d601b1d2f13d5
|
|
| BLAKE2b-256 |
527a2fef4b49ee283cc083a68930e73ae09a315fbf1770caf53cbc891261a558
|
File details
Details for the file git_pulsar-0.7.0-py3-none-any.whl.
File metadata
- Download URL: git_pulsar-0.7.0-py3-none-any.whl
- Upload date:
- Size: 4.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a294090b46fd2cdffa1432d9db4daa8d74901798b7ce1de0d80d82ca61a10557
|
|
| MD5 |
1ef88e7360fdc9dfcd0e046964607315
|
|
| BLAKE2b-256 |
d218ca88c8d02f20e6632c0e09e8f7cac8eb4a9a7192d58df0b53771a53e6ad1
|