Skip to main content

Automated, paranoid git backups for students and casual coding.

Project description

🔭 Git Pulsar (v0.6.0)

Tests Python 3.12+ License: MIT Ruff Pre-commit

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) or systemd (Linux).
  • Non-Intrusive: Commits are pushed to a separate branch (wip/pulsar). Your main branch stays clean.
  • Smart Checks:
    • Detects if the repo is busy (merging/rebasing) and yields.
    • Prevents accidental upload of large files (>100MB).
    • Auto-generates .gitignore for 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:

  1. Check for changes.
  2. Commit them to wip/pulsar.
  3. 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. Retrieve Your Work

When you are ready to finalize your work, you can squash the backup history into your main branch:

git checkout main
git merge --squash wip/pulsar
git commit -m "Finalized assignment submission"

⚙️ 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.

  1. Clone and Install Dependencies:

    git clone https://github.com/jacksonferguson/git-pulsar.git
    cd git-pulsar
    uv sync
    
  2. Setup Pre-commit Hooks:

    pre-commit install
    
  3. Run Tests: We use pytest for testing and hypothesis for 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


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

git_pulsar-0.6.0.tar.gz (55.0 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

git_pulsar-0.6.0-py3-none-any.whl (4.3 kB view details)

Uploaded Python 3

File details

Details for the file git_pulsar-0.6.0.tar.gz.

File metadata

  • Download URL: git_pulsar-0.6.0.tar.gz
  • Upload date:
  • Size: 55.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for git_pulsar-0.6.0.tar.gz
Algorithm Hash digest
SHA256 ddb82641ebdf8b91f8db5768efc59eb20a17dce9a02c420ebbd1fe7ff48c83c0
MD5 8d41c0676d025ccfd06ba1b9d707003a
BLAKE2b-256 aeb976a56e5ed8a598db57dcde5e939e8b431e23797e27a3051b78ef6b4973d6

See more details on using hashes here.

File details

Details for the file git_pulsar-0.6.0-py3-none-any.whl.

File metadata

  • Download URL: git_pulsar-0.6.0-py3-none-any.whl
  • Upload date:
  • Size: 4.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for git_pulsar-0.6.0-py3-none-any.whl
Algorithm Hash digest
SHA256 d70ab4f5987ab44ff1824eb125cad9be72e5d9f3c4d0ff2692aa26f13bf9ba44
MD5 ea3149e50b7d500af9f77e9d47c8ee0a
BLAKE2b-256 19776ae65db72e96a7444298289e0f786a449eabb3aa1bb7bb80a5dcec01fc79

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page