Naj is a lightweight, secure, and idempotent wrapper for Git, written in Rust. It solves the chaos of managing multiple Git identities (Work vs. Personal) by strictly isolating configurations and preventing accidental identity leaks.
- 🛡️ Fail-Safe Security: Uses "Blind Injection" to forcibly wipe global identity keys before applying a profile. If your profile lacks a key, Naj fails securely rather than falling back to your global
~/.gitconfig. - ⚡ Ephemeral Execution: Run commands like
naj work commitwithout modifying any files on disk. Perfect for one-off fixes. - 💾 Persistent Switching: Permanently bind a repository to an identity using Git's native
[include]directive. - 🛠️ Zero Config Setup: Automatically handles
cloneandinitsetup, applying the correct identity immediately. - 📂 Portable Profiles: Profiles are stored in
~/.config/naj/profiles/, designed to be synced via a private Git repository.
cargo install najgit clone https://github.com/dotinx/naj.git
cd naj
cargo install --path .Naj manages identities as "Profiles".
# Syntax: naj -c <Name> <Email> <ProfileID>
naj -c "Alice Work" "alice@company.com" "work"
naj -c "Alice Hobby" "alice@gmail.com" "personal"
# List all profiles
naj -l
# Edit a profile (e.g., to add signingkey or sshCommand)
naj -e work
When you clone or init a repository, Naj automatically sets up the local config.
# Clones the repo and immediately binds it to the "work" profile
naj work clone git@github.com:company/backend.git
# Inside the repo, you can now just use standard git
cd backend
git config user.email # Output: alice@company.com
Run a command with a specific identity without modifying the repository config.
# Temporarily commit as "personal" in a work repo (e.g., fixing a typo)
naj personal commit -m "Fix typo"
# Verification
naj personal config user.email
Change the identity bound to an existing repository.
cd my-repo
naj work
# If the repo has "dirty" config (manually set user.name), force overwrite it:
naj work -f
Naj follows the XDG Base Directory specification.
- Config File:
~/.config/naj/naj.toml - Profiles:
~/.config/naj/profiles/*.gitconfig
On the first run, Naj will automatically create these directories and a default configuration file.
NAJ_CONFIG_PATH: Override the config directory (Useful for NixOS or testing).NAJ_MOCKING=1: Dry-run mode. Prints the constructedgitcommand to stderr instead of executing it.
In Exec Mode, Naj does not read your local configuration to decide what to override. Instead, it aggressively injects empty values for sensitive keys before applying your profile.
Example command generated by Naj:
git \
-c user.name="" \ # 1. Wipe potential leaks
-c user.email="" \
-c user.signingkey="" \
-c commit.gpgsign=false \
-c include.path=~/.config/naj/profiles/work.gitconfig \ # 2. Apply Profile
commit ...
This ensures that if your "work" profile is missing a GPG key, Git will error out ("Secret key not available") rather than silently using your personal GPG key from ~/.gitconfig.
Use a machine running Linux to build artifacts for all targets. rustup, cross, and podman/docker are required.
Run build.sh to build artifacts for all targets.
