Skip to content

Commit 9f49902

Browse files
author
Danny Molnar
committed
docs: add README
1 parent 1b69afe commit 9f49902

File tree

1 file changed

+36
-0
lines changed

1 file changed

+36
-0
lines changed

README.md

+36
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
# Gitorchk
2+
3+
Gitorchk is a command-line tool written in Go to help you stay up-to-date with changes in your Git repository. It checks if your local main branch is behind the remote main branch and prompts you to take action if updates are available.
4+
5+
## Installation
6+
7+
To install Gitorchk, you can use `go get`:
8+
9+
```bash
10+
go get github.com/danny-molnar/gitorchk
11+
```
12+
13+
Ensure your Go environment is set up properly and your `$GOPATH/bin` directory is in your system's PATH.
14+
15+
## Usage
16+
17+
Run Gitorchk in your Git repository directory:
18+
19+
```bash
20+
gitorchk
21+
```
22+
23+
If your local main branch is behind the remote main branch, Gitorchk will prompt you to take action to update your repository.
24+
25+
## Features
26+
27+
- Check if local main branch is behind remote main branch.
28+
- Prompt user to take action if updates are available.
29+
30+
## Contributing
31+
32+
Contributions are welcome! If you find a bug or have an idea for a new feature, please open an issue or submit a pull request.
33+
34+
## License
35+
36+
This project is licensed under the MIT License - see the [LICENSE.md](LICENSE.md) file for details.

0 commit comments

Comments
 (0)