Skip to content

Commit 8652b70

Browse files
committed
...
1 parent 34a92e5 commit 8652b70

2 files changed

Lines changed: 32 additions & 1 deletion

File tree

README.md

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
# Easy Commit Messages
2+
3+
This software is designed to make your life easier by writing your commit messages for you
4+
5+
# Installation
6+
7+
Download the latest binary from the [releases](https://github.com/lyqio/easy-commit-messages/releases) and then you will be able to run the .exe file to use the program.
8+
9+
# Build From Source
10+
11+
First make sure you have rust installed with cargo
12+
13+
```bash
14+
cargo --version
15+
```
16+
17+
Clone this repo and build:
18+
19+
```bash
20+
git clone https://github.com/lyqio/easy-commit-messages.git
21+
cd easy-commit-messages
22+
cargo build
23+
```
24+
The resulting exe file should be located in the directory
25+
26+
```bash
27+
target/debug/easy-commit-messages.exe
28+
```
29+

src/main.rs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ const VERSION: &str = "1.0.0";
1919
2020
fixed identical bug
2121
removed feline feature
22-
fix loyal bug
22+
adds charming bug
2323
2424
*/
2525

@@ -46,6 +46,8 @@ fn main() {
4646
"--version" => {version()},
4747
_ => {},
4848
}
49+
50+
return;
4951
}
5052

5153
print_parts(second_part);

0 commit comments

Comments
 (0)