-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Paul Rosset
committed
Dec 27, 2022
1 parent
9f230ba
commit 096f3df
Showing
4 changed files
with
50 additions
and
12 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,15 @@ | ||
[package] | ||
name = "git-aware" | ||
version = "0.1.0" | ||
name = "gitaware" | ||
version = "1.0.0" | ||
edition = "2021" | ||
|
||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | ||
authors = ["Paul Rosset <[email protected]>"] | ||
license = "MIT" | ||
description = "Git Aware is a **command line tool** that aims to make it easier to detect any dirty working copy in projects that uses Git" | ||
readme = "README.md" | ||
homepage = "https://github.com/PaulRosset/git-aware" | ||
repository = "https://github.com/PaulRosset/git-aware" | ||
keywords = ["cli", "git", "git-status", "status", "detection"] | ||
categories = ["command-line-utilities"] | ||
|
||
[dependencies] | ||
git2 = "0.15.0" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
# git-aware | ||
|
||
Git Aware is a **command line tool** that aims to make it easier to detect any dirty working copy in projects that uses Git. | ||
|
||
## Why ? | ||
|
||
Git Aware has been designed to address the need when an person will drop or switch of computer but want to make sure that we will not lose on any Git related content. | ||
|
||
The CLI tool will scan and identify all the Git repositories on your system and notify you if your working copy is dirty, allowing you to take timely action and prevent the loss of any previous work. | ||
|
||
## Usage | ||
|
||
To use it, there is multiples possibilities: | ||
|
||
- You can either download the binary for MAC [here]() | ||
- If you are not on a MAC you can serve the binary yourself by running `cargo build --release` at the root of the repository, the binary will be served under `target/release/gitaware` | ||
|
||
Once the binary is located on your machine, to use it simply do: | ||
|
||
- `gitaware` | ||
|
||
or if you want to target a directory: | ||
|
||
- `gitaware -p the/directory/to/target` | ||
|
||
## Results | ||
|
||
 | ||
|
||
## Contribute | ||
|
||
Any contribution are welcome. |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.