• v0.3.4 0f30aaadf5

    v0.3.4
    All checks were successful
    continuous-integration/drone/push Build is passing
    continuous-integration/drone/tag Build is passing
    Stable

    kjuulh released this 2025-01-08 22:56:04 +01:00 | 10 commits to main since this release

    This update primarily brings custom hooks to use to run commands after a project is jumped to, or run if it is the first time it is pulled.

    Below is an example of a ~/.config/gitnow/gitnow.toml that sets these settings.

    [settings]
    # Runs after a project is fetched for the first time, either a single string, or multiple in an array
    post_clone_command = "jj git init --colocate"
    # Runs after a project is jumped to if it already exists.
    post_update_command = ["git pull", "jj git fetch"]
    

    Added

    • feat/add-post-clone-command

    • add ability to specify custom command

    Fixed

    • use correct post clone command
    • tests for config

    Other

    • add ability to specify multiple commands
    Downloads