2 stable releases

1.0.1 Feb 26, 2020
1.0.0 Feb 23, 2020

#646 in Command-line interface

MIT license

18KB
417 lines

crates.io license CI

Commit Artist

A CLI tool to beautify latest commit of your git repository.

DEMO

Usage

Install Commit Artist

$ cargo install commit_artist

$ cd <your_working_dir>

$ git log -1 --format=%H
86637c3f206d228df1dc1dafa49d31b159b8a358

$ commit_artist -p 1234567
173015040 hashes calculated...
Yay! Now your new hash of the latest commit is 12345672abd92a159f3886e08951f29ee7ce0041.

$ git log -1 --format=%H
12345672abd92a159f3886e08951f29ee7ce0041

Command Line Options

  • [--path] Path to working directory. default: current directory
  • [--pattern, -p] Pattern to match. default: 0000000
  • [--block, -b] log[2](how many hashes should be calculated in each thread). default: 20
  • [--jobs, -j] the number of threads that will be spawned to bruteforce. default: your max - 1

How it works

architecture

A commit hash of git is generated from commit object.
Commit object consists of "tree hash", "parent hash", "author info", "committer info" and "commit message".
Author info and committer info each have "name", "email address", "timestamp".

One of the easiest thing to configure (even after the commit is done) among these attributes above is committer's name.
Changing it may affect almost nothing but commit hash.

So, after a commit is done, by running Commit Artist, through changing committer's name and calculating commit hash and loop back unless it is beautiful, finally you can get a commit which have sophisticated hash.

Disclaimer

Use this tool on your own responsibility.
This tool is absolutely helpless with signed commit.

Dependencies

~7MB
~110K SLoC