An open API service indexing awesome lists of open source software.

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

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
```