Skip to content

Commit

Permalink
chore(release): 1.4.0 [skip ci]
Browse files Browse the repository at this point in the history
# [1.4.0](v1.3.1...v1.4.0) (2021-08-25)

### Features

* handle naming conflicts ([7c9207e](7c9207e))
  • Loading branch information
semantic-release-bot committed Aug 25, 2021
1 parent 7c9207e commit 16f98da
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 267 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
# [1.4.0](https://github.com/mdonnalley/multiple-repo-manager/compare/v1.3.1...v1.4.0) (2021-08-25)


### Features

* handle naming conflicts ([7c9207e](https://github.com/mdonnalley/multiple-repo-manager/commit/7c9207ec9e83f74e92de94a0bc4091ae06e62d43))

## [1.3.1](https://github.com/mdonnalley/multiple-repo-manager/compare/v1.3.0...v1.3.1) (2021-08-25)


Expand Down
266 changes: 0 additions & 266 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,271 +64,5 @@ done-with-branch: |
# Commands
<!-- commands -->
* [`multi add ENTITY`](#multi-add-entity)
* [`multi alias KEYVALUE`](#multi-alias-keyvalue)
* [`multi alias resolve ALIAS`](#multi-alias-resolve-alias)
* [`multi cd REPO`](#multi-cd-repo)
* [`multi exec REPO`](#multi-exec-repo)
* [`multi list`](#multi-list)
* [`multi open REPO`](#multi-open-repo)
* [`multi remove REPO`](#multi-remove-repo)
* [`multi setup`](#multi-setup)
* [`multi view REPO`](#multi-view-repo)
* [`multi where REPO`](#multi-where-repo)
## `multi add ENTITY`

Add a github org or repo. Requires GH_TOKEN to be set in the environment.

```
USAGE
$ multi add [ENTITY] [--method ssh|https]

ARGUMENTS
ENTITY Github org, repo, or url to add

FLAGS
--method=<option> [default: ssh] Method to use for cloning.
<options: ssh|https>

DESCRIPTION
Add a github org or repo. Requires GH_TOKEN to be set in the environment.

EXAMPLES
Add a github org

$ multi add my-github-org

Add a github org by url

$ multi add https://github.com/my-github-org

Add a github repo by name

$ multi add my-github-org/my-repo

Add a github repo by url

$ multi add https://github.com/my-github-org/my-repo
```
_See code: [src/commands/add.ts](https://github.com/mdonnalley/multiple-repo-manager/blob/v1.3.1/src/commands/add.ts)_
## `multi alias KEYVALUE`
Provide an empty to value to unset the alias. This feature is not support on Windows.
```
USAGE
$ multi alias [KEYVALUE] [--interactive]

ARGUMENTS
KEYVALUE alias=value

FLAGS
--interactive Open a vim editor to add your alias

DESCRIPTION
Set or unset an executable alias.

Provide an empty to value to unset the alias. This feature is not support on Windows.

EXAMPLES
Set an alias

$ multi alias build=yarn build

Set an alias that uses multi exec

$ multi alias circle=multi exec . open https://app.circleci.com/pipelines/github/{repo.fullName}

Unset an alias

$ multi alias build=

Set an alias interactively

$ multi alias build --interactive
```
_See code: [src/commands/alias.ts](https://github.com/mdonnalley/multiple-repo-manager/blob/v1.3.1/src/commands/alias.ts)_
## `multi alias resolve ALIAS`
Return the value of an alias.
```
USAGE
$ multi alias resolve [ALIAS]

ARGUMENTS
ALIAS Name of alias to resolve..

DESCRIPTION
Return the value of an alias.
```
## `multi cd REPO`
cd into a github repository.
```
USAGE
$ multi cd [REPO]

ARGUMENTS
REPO Name of repository.

DESCRIPTION
cd into a github repository.
```
_See code: [src/commands/cd.ts](https://github.com/mdonnalley/multiple-repo-manager/blob/v1.3.1/src/commands/cd.ts)_
## `multi exec REPO`
Execute a command or script in a repository.
```
USAGE
$ multi exec [REPO]

ARGUMENTS
REPO Name of repository to execute in. Use "." to specify the current working directory.

DESCRIPTION
Execute a command or script in a repository.

ALIASES
$ multi x

EXAMPLES
Execute a script in a different repository

$ multi exec my-repo yarn compile

Execute a script in the current working directory

$ multi exec . yarn compile

Interpolate values into command execution

$ multi exec . open https://app.circleci.com/pipelines/github/{repo.fullName}
```
_See code: [src/commands/exec.ts](https://github.com/mdonnalley/multiple-repo-manager/blob/v1.3.1/src/commands/exec.ts)_
## `multi list`
List all added repositories.
```
USAGE
$ multi list

DESCRIPTION
List all added repositories.

ALIASES
$ multi ls
```
_See code: [src/commands/list.ts](https://github.com/mdonnalley/multiple-repo-manager/blob/v1.3.1/src/commands/list.ts)_
## `multi open REPO`
Open a github repository.
```
USAGE
$ multi open [REPO]

ARGUMENTS
REPO [default: .] Name of repository.

DESCRIPTION
Open a github repository.

ALIASES
$ multi o
```
_See code: [src/commands/open.ts](https://github.com/mdonnalley/multiple-repo-manager/blob/v1.3.1/src/commands/open.ts)_
## `multi remove REPO`
Remove a github repository from your local filesystem.
```
USAGE
$ multi remove [REPO]

ARGUMENTS
REPO Name of repository.

DESCRIPTION
Remove a github repository from your local filesystem.

ALIASES
$ multi rm
```
_See code: [src/commands/remove.ts](https://github.com/mdonnalley/multiple-repo-manager/blob/v1.3.1/src/commands/remove.ts)_
## `multi setup`
Setup multi
```
USAGE
$ multi setup [-d <value>]

FLAGS
-d, --directory=<value> Location to setup repositories.

DESCRIPTION
Setup multi
```
_See code: [src/commands/setup.ts](https://github.com/mdonnalley/multiple-repo-manager/blob/v1.3.1/src/commands/setup.ts)_
## `multi view REPO`
View a github repository.
```
USAGE
$ multi view [REPO]

ARGUMENTS
REPO Name of repository.

DESCRIPTION
View a github repository.

ALIASES
$ multi v
```
_See code: [src/commands/view.ts](https://github.com/mdonnalley/multiple-repo-manager/blob/v1.3.1/src/commands/view.ts)_
## `multi where REPO`
Print location of a github repository.
```
USAGE
$ multi where [REPO] [--remote]

ARGUMENTS
REPO Name of repository.

FLAGS
--remote Return url of repository.

DESCRIPTION
Print location of a github repository.
```
_See code: [src/commands/where.ts](https://github.com/mdonnalley/multiple-repo-manager/blob/v1.3.1/src/commands/where.ts)_
<!-- commandsstop -->
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "multiple-repo-manager",
"description": "CLI for managing multiple node packages",
"version": "1.3.1",
"version": "1.4.0",
"author": "Mike Donnalley",
"homepage": "https://github.com/mdonnalley/multiple-repo-manager",
"repository": "mdonnalley/multiple-repo-manager",
Expand Down

0 comments on commit 16f98da

Please sign in to comment.