Skip to content

Commit 4c31bbb

Browse files
committed
Removed endpoint param from bitbucket
1 parent 94d5ed2 commit 4c31bbb

File tree

3 files changed

+5
-7
lines changed

3 files changed

+5
-7
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Changelog
22

3+
## [0.4.1] - 2019-05-11
4+
### Removed
5+
6+
* Removed `--endpoint` from gitlab subcommand. It is taken care of via a global param now.
7+
38
## [0.4.0] - 2019-05-11
49
### Added
510
* Added `--ssh_remote_format`, `--set_remote`, and `--remote_name` commands. These are global commands and must be used before the subcommand. Example: `gitpub --ssh_remote_format github -n "name"` Check README for more info.

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,6 @@ FLAGS:
147147
148148
OPTIONS:
149149
-d, --description <description> A short description of the repository.
150-
-e, --endpoint <endpoint> Allows redirection of requests to enterprise providers.
151150
--fork_policy <fork_policy> Changes the allowed forking method for this repo. [possible values: allow_forks, no_public_forks, no_forks]
152151
-n, --name <name> The name of the new repository.
153152
--scm <scm> Control underlying source control method. [possible values: git, hg]

src/provider/bitbucket.rs

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -123,12 +123,6 @@ pub fn subcommand() -> App<'static, 'static> {
123123
Arg::with_name("language")
124124
.long("language")
125125
.help("Give bitbucket a hint about the programming language.")
126-
).arg(
127-
Arg::with_name("endpoint")
128-
.short("e")
129-
.long("endpoint")
130-
.help("Allows redirection of requests to enterprise providers.")
131-
.takes_value(true)
132126
)
133127
}
134128

0 commit comments

Comments
 (0)