commit--cli

Crates.iocommit--cli
lib.rscommit--cli
version0.2.0
sourcesrc
created_at2021-12-08 04:13:59.490425
updated_at2021-12-11 03:40:12.922219
descriptionCommand-line tool for publishing git commits to commit--blog.com
homepagehttps://commit--blog.com/cli
repositoryhttps://github.com/uniphil/commit--cli
max_upload_size
id494238
size92,727
phil (uniphil)

documentation

README

commit--cli

A command-line interface for commit--blog

Creating a commit --blog

If you use Git, you’ve already begun! To create a public commit --blog of your own, you don’t need to dive deeper into this repo. Go to https://commit--blog.com, follow the instructions there to create an account, and start picking some of your favourite commits to publish.

Publishing commits with the CLI

Once you have an account set up, log in from the CLI with

git blog login

Once logged in, you can publish commits with

git blog post

By default it will attempt to publish the commit at the HEAD of whatever repository your terminal is in when you run it.

For the moment, only repositories with a github ssh origin are supported, but more general git support is coming soon. Make sure you push your commit before trying to publish it as a post :)

You can provide any git reference to publish a specific commit

git blog post main~2

To see full usage details,

git blog --help

Contributing

We’re still working on this part of the README. For now, you can check out the project’s active issues.

Working with a local/alternate instance of the commit--blog site

Use the COMMITBLOG_HOST environment variable override. For example, to hack on the commit--blog dev server locally,

COMMITBLOG_HOST=http://localhost:5000 cargo run login

# or with the installed version:
COMMITBLOG_HOST=http://localhost:5000 git blog login

License

GNU Affero General Public License

Commit count: 30

cargo fmt