Skip to content

Commit

Permalink
docs(record): add README.md
Browse files Browse the repository at this point in the history
This is generated via `cargo readme`.
  • Loading branch information
arxanas committed Apr 11, 2022
1 parent 352e8e9 commit f6b4df2
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 5 deletions.
3 changes: 0 additions & 3 deletions git-record/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,6 @@ version = "0.1.0"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[lib]
name = "git_record"

[dependencies]
cursive = { version = "0.17.0", default-features = false, features = [
"crossterm-backend",
Expand Down
14 changes: 14 additions & 0 deletions git-record/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# git-record

Supporting library for
[git-branchless](https://github.com/arxanas/git-branchless).

This is a UI component to interactively select changes to include in a
commit. It's meant to be embedded in source control tooling.

You can think of this as an interactive replacement for `git add -p`, or a
reimplementation of `hg crecord`. Given a set of changes made by the user,
this component presents them to the user and lets them select which of those
changes should be staged for commit.

License: MIT OR Apache-2.0
7 changes: 5 additions & 2 deletions git-record/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
//! UI component to interactively select changes to include in a commit. This
//! component is meant to be embedded in source control tooling.
//! Supporting library for
//! [git-branchless](https://github.com/arxanas/git-branchless).
//!
//! This is a UI component to interactively select changes to include in a
//! commit. It's meant to be embedded in source control tooling.
//!
//! You can think of this as an interactive replacement for `git add -p`, or a
//! reimplementation of `hg crecord`. Given a set of changes made by the user,
Expand Down

0 comments on commit f6b4df2

Please sign in to comment.