Crates.io | commit_artist |
lib.rs | commit_artist |
version | 1.0.1 |
source | src |
created_at | 2020-02-23 04:13:32.169774 |
updated_at | 2020-02-26 03:17:18.570932 |
description | Git Commit Hash Beautifier |
homepage | |
repository | https://github.com/rnitta/commit_artist |
max_upload_size | |
id | 211640 |
size | 30,488 |
A CLI tool to beautify latest commit of your git repository.
$ 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
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.
Use this tool on your own responsibility.
This tool is absolutely helpless with signed commit.