You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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