Skip to content

Commit c7ba174

Browse files
committed
Update README
1 parent a8a9b8d commit c7ba174

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Git hooks are scripts that Git executes before or after events such as: commit,
99

1010
Every Git repository has a `.git/hooks` folder with a script for each hook you can bind to. You're free to change or update these scripts as necessary, and Git will execute them when those events occur.
1111

12-
Here's a full list of hooks you can attach scripts to: [git hooks lists](https://githooks.com/)
12+
Here's a full list of hooks you can attach scripts to: [git hooks lists](https://githooks.com/).
1313

1414
## Environments
1515

src/lib.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,10 @@
11
#![allow(unused_variables)]
2-
#![allow(unused_imports)]
32

43
use std::thread::sleep;
54
use std::time::Duration;
65
use futures::future::join4;
76

8-
use git2::{Oid, Repository, ObjectType, Commit, BranchType};
7+
use git2::{Oid, Repository, BranchType};
98

109
// -> Open & Select Your Repository
1110
fn open_repo() -> Repository {

0 commit comments

Comments
 (0)