https://github.com/kazhuravlev/repo-manager
Simple checks across repositories
https://github.com/kazhuravlev/repo-manager
git go golang tool
Last synced: about 2 months ago
JSON representation
Simple checks across repositories
- Host: GitHub
- URL: https://github.com/kazhuravlev/repo-manager
- Owner: kazhuravlev
- License: mit
- Created: 2022-10-16T13:42:51.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2022-10-25T16:09:06.000Z (over 3 years ago)
- Last Synced: 2025-04-01T16:16:19.029Z (about 1 year ago)
- Topics: git, go, golang, tool
- Language: Go
- Homepage:
- Size: 17.6 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Repo Manager
This tool is allow you to manage several repositories.
## Functionality
- [ ] Check that all local copy of repos is in the latest state
- [ ] Check that all repos has/has no specific dependencies
- [ ] Golang
- [x] Has some repo in `go.mod`
- [x] Has concrete version in `go.mod`
- [x] Has version which great or equal to concrete version in `go.mod`
- [x] Has `latest` version. When this option is set - `repo-manager` will fetch module and detect the latest version.
## Installation
**Golang**
```shell
go install github.com/kazhuravlev/repo-manager/cmd/repo-manager@latest
```
**Homebrew**
```shell
brew install kazhuravlev/repo-manager/repo-manager
```
**Docker (zsh)** (will work only in current directory)
```shell
echo 'alias repo-manager="docker run -it --rm -v `pwd`:/workdir kazhuravlev/repo-manager:latest"' >> ~/.zshrc
```