Compare commits

..

3 Commits

Author SHA1 Message Date
f5f4caeb1f
with updated name 2022-10-21 01:03:53 +02:00
f89492f79e
with actual category 2022-10-21 01:00:09 +02:00
9458211728
move readme 2022-10-21 00:56:13 +02:00
3 changed files with 8 additions and 7 deletions

View File

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

View File

@ -1,4 +1,4 @@
# Git ignore
# Git ignore (kignore)
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
@ -6,6 +6,7 @@ to .gitignore, this is by default also run in interactive mode, giving you the
option to confirm or deny
```bash
$ kignore 'node_modules/'
found .gitignore .../some-path/.gitignore
Added node_modules/ to .gitignore
Removed node_modules/ from git index
@ -22,7 +23,7 @@ Removed node_modules/ from git index
### Cargo
Cargo will only pull the `gitignore` command and won't add a subcommand to `git.
Cargo will only pull the `kignore` command and won't add a subcommand to `git.
```bash
$ cargo install kjuulh/gitignore

View File

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