git-today 0.1.1

A tool to recap your daily git work
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18

set shell := ["bash", "-uc"]

# List all recipes
default:
    just --choose

# Run checks on the code
check:
    cargo clippy

# Install the binary
install:
    cargo install --path .

# Publish the application to crates.io
publish:
    cargo publish