Compare commits

..

No commits in common. "f5f4caeb1fdf87329b6d01db232da41e7366d854" and "6b71e355aa5f0bfd6ca0b5b8a1468908b5790bd3" have entirely different histories.

3 changed files with 7 additions and 8 deletions

View File

@ -1,5 +1,5 @@
[package] [package]
name = "kignore" name = "gitignore"
version = "0.1.0" version = "0.1.0"
authors = ["Kasper J. Hermansen <contact@kjuulh.io>"] authors = ["Kasper J. Hermansen <contact@kjuulh.io>"]
license = "MIT" license = "MIT"
@ -8,9 +8,9 @@ keywords = ["git", "ignore", "clap", "interactive"]
repository = "https://github.com/kjuulh/gitignore" repository = "https://github.com/kjuulh/gitignore"
documentation = "https://docs.rs/gitignore" documentation = "https://docs.rs/gitignore"
description = """ description = """
kignore is a tool for easily adding patterns to .gitignore and cleaning up afterwards gitignore is a tool for easily adding patterns to gitignore and cleaning up afterwards
""" """
categories = ["command-line-interface"] categories = ["git-tools"]
edition = "2021" edition = "2021"
[workspace] [workspace]

View File

@ -1,4 +1,4 @@
# Git ignore (kignore) # Git ignore
Is an extension for easily adding ignored files to `.gitignore files`, when Is an extension for easily adding ignored files to `.gitignore files`, when
added it will by default also try to remove any files matching the pattern added added it will by default also try to remove any files matching the pattern added
@ -6,7 +6,6 @@ to .gitignore, this is by default also run in interactive mode, giving you the
option to confirm or deny option to confirm or deny
```bash ```bash
$ kignore 'node_modules/'
found .gitignore .../some-path/.gitignore found .gitignore .../some-path/.gitignore
Added node_modules/ to .gitignore Added node_modules/ to .gitignore
Removed node_modules/ from git index Removed node_modules/ from git index
@ -23,7 +22,7 @@ Removed node_modules/ from git index
### Cargo ### Cargo
Cargo will only pull the `kignore` command and won't add a subcommand to `git. Cargo will only pull the `gitignore` command and won't add a subcommand to `git.
```bash ```bash
$ cargo install kjuulh/gitignore $ cargo install kjuulh/gitignore

View File

@ -4,14 +4,14 @@ version = "0.1.0"
edition = "2021" edition = "2021"
authors = ["Kasper J. Hermansen <contact@kjuulh.io>"] authors = ["Kasper J. Hermansen <contact@kjuulh.io>"]
license = "MIT" license = "MIT"
readme = "../../README.md" readme = "README.md"
keywords = ["git", "ignore", "clap", "interactive"] keywords = ["git", "ignore", "clap", "interactive"]
repository = "https://github.com/kjuulh/gitignore" repository = "https://github.com/kjuulh/gitignore"
documentation = "https://docs.rs/gitignore" documentation = "https://docs.rs/gitignore"
description = """ description = """
gitignore_inner is the internal module for cargo gitignore_inner is the internal module for cargo
""" """
categories = ["command-line-interface"] categories = ["git-tools"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html