vilmibm
bb65bda62f
escape codes in errors render v poorly in windows
2020-02-28 10:28:36 -06:00
vilmibm
5d44d9f483
tweak flag settings
2020-02-27 16:55:31 -06:00
vilmibm
8c473a2779
shorten some english
2020-02-27 16:44:02 -06:00
vilmibm
7fad2d05fb
switch to alternate method for determining if repo already forked
2020-02-27 16:43:44 -06:00
vilmibm
115bf37bbd
switch to --clone/--remote
2020-02-26 17:08:48 -06:00
vilmibm
256bdabf03
slight refactor
...
I didn't initially use GitHubRepo because it had the weird error
wrapping. I poked around and I think this function is leftover from a
vestigial GitHubRepoID function that used to be more single-purpose. I
took out the weird error handling so it could be reused and then used it
from the new GitHubRepoExists.
2020-02-26 16:48:29 -06:00
vilmibm
e38c15e2c9
fix ellipsis color
2020-02-26 11:56:00 -06:00
vilmibm
6371864835
spruce up UX
2020-02-26 11:48:11 -06:00
vilmibm
8a3337ca66
switch default to Y
2020-02-25 16:26:51 -06:00
vilmibm
4f25d06c1e
add repo fork tests
2020-02-25 16:26:51 -06:00
vilmibm
6eaab2562f
add repo fork command
2020-02-25 16:26:51 -06:00
Mislav Marohnić
d25ec726ad
Add repo clone <repo> command
2020-02-25 16:47:42 +01:00
Nate Smith
7a222d8f93
Merge pull request #337 from spenrose/repo-view
...
Add repo view command
2020-02-24 13:28:05 -06:00
vilmibm
1bf8beb96d
fix baseRepo type
2020-02-24 13:22:43 -06:00
vilmibm
cb20e9939f
Merge remote-tracking branch 'origin/master' into repo-view
2020-02-24 13:19:59 -06:00
Mislav Marohnić
980a5a39eb
Merge pull request #539 from cli/push-output
...
Show `git push` output during `pr create`
2020-02-24 20:19:11 +01:00
Mislav Marohnić
c10f2ff945
Communicate to the user that we're waiting before retrying git push
...
When the user has just created a fork, it might not yet be ready for
writing. This ensures that the wait period between retries is
communicated to the user on stderr.
2020-02-24 19:36:54 +01:00
Mislav Marohnić
6eba80a8b4
Merge remote-tracking branch 'origin/master' into repo-view
2020-02-24 17:20:02 +01:00
Mislav Marohnić
e87467d21f
Allow repo view OWNER/REPO format for owners starting with "http"
2020-02-24 17:17:14 +01:00
Mislav Marohnić
398a5defb8
Use displayURL helper for consistency
2020-02-24 17:17:00 +01:00
Mislav Marohnić
20fc0dfcb7
Avoid API requests in repo view when repo argument is given
2020-02-24 17:14:46 +01:00
Mislav Marohnić
f6eb710462
Fix test expectation on Windows
...
On Windows, `&` characters in URLs need to be escaped with `^`, but that
messes up the test expectation for other platforms, so this normalizes it.
2020-02-24 13:53:37 +01:00
Mislav Marohnić
38b58a4914
Respect explicit title & body with issue create --web
2020-02-24 13:41:46 +01:00
Mislav Marohnić
ac94ae5872
Return interface from determineBaseRepo(), not pointer to interface
...
It's sufficient to return a value of type `ghrepo.Interface` instead of
a pointer to an interface. This avoids having to use `*` whenever we are
passing the result of `determineBaseRepo()` into another function that
accepts a `ghrepo.Interface`.
2020-02-24 13:40:58 +01:00
Mislav Marohnić
9c00ac0224
Tweak verbose HTTP logging
...
- log headers only in DEBUG=api mode
- enable color output on stderr
- hide little-useful TLS debbuging info
- ensure all request headers are logged
2020-02-21 12:57:00 +01:00
Mislav Marohnić
b5d0b7c640
Merge pull request #523 from cli/title-body-web
...
Respect title & body from arguments to `pr create -w`
2020-02-20 22:53:40 +01:00
Mislav Marohnić
1a82e39ba9
Respect title & body from arguments to pr create -w
2020-02-20 22:48:04 +01:00
Mislav Marohnić
4c3e498021
Fix column alignment and truncation for Eastern Asian languages
...
- Ensure that text is never truncated mid-character, which would result
in garbled text
- Ensure that columns in `issue/pr list` output align properly
2020-02-20 18:52:17 +01:00
Mislav Marohnić
13dbfa44c2
go fmt
2020-02-20 13:55:55 +01:00
Mislav Marohnić
861b231344
Have --state=closed include merged PRs
...
Since we currently offer no way of querying PRs by combining multiple
states with an OR, the best way to handle the `closed` state is to match
what the web UI is doing; that is to include merged PRs.
2020-02-20 13:53:44 +01:00
Nate Smith
57eb1d1d45
Merge pull request #505 from cli/completion-error-handling
...
Make sure to handle errors when generating completions
2020-02-19 08:52:34 -06:00
Mislav Marohnić
6424e8c92a
Make sure to handle errors when generating completions
2020-02-19 15:39:33 +01:00
Mislav Marohnić
f6c9e7b4af
Merge pull request #497 from ShahzadUmair/fix-template
...
Explicitly replace empty body with default template
2020-02-19 15:04:53 +01:00
Scott Penrose
7c76fb645a
Add repo view command
...
```
$ gh repo
Work with GitHub repositories.
A repository can be supplied as an argument in any of the following formats:
- by owner/repo, e.g. "cli/cli"
- by URL, e.g. "https://github.com/cli/cli "
Usage:
gh repo [command]
Available Commands:
view View a repository in the browser
```
2020-02-18 21:25:31 -05:00
Nate Smith
f6856d9783
Merge pull request #483 from cli/pr-create-web-base
...
Respect overriden base branch in `pr create --web`
2020-02-18 16:11:39 -06:00
UmairShahzad
12216fee8c
reset to template if body is empty
2020-02-19 02:16:12 +05:00
Nate Smith
c65ac4ae9d
Merge branch 'master' into glamour-markdown
2020-02-18 14:23:49 -06:00
Mislav Marohnić
408b565fd9
Allow setting version via ldflags again
2020-02-18 13:47:57 +01:00
Colin Arnott
de6e99aa75
command: default to toolchain version
...
Since the Go toolchain is able to extract the module version at build
time, we should use that as a default instead of DEV. This means
customers installing via go-get will get the correct version.
Unfortunately, the toolchain does not store when the build occurs, so
BuildTime now defaults to the empty string. It is still set if build
officially, just not for go-get.
2020-02-18 07:55:54 +00:00
Mislav Marohnić
96ba2d27d8
Respect overriden base branch in pr create --web
2020-02-17 14:14:37 +01:00
Dmitry Sharshakov
b67bb55383
Correct typoes
2020-02-16 17:28:03 +03:00
Nate Smith
96dc4376a1
Merge pull request #429 from cli/co-drawing-board
...
revert pr checkout branch prefixing
2020-02-13 17:37:42 -06:00
Nate Smith
2e7feddcc4
Merge pull request #362 from cli/cross-repo-create
...
Cross repo pr create
2020-02-13 17:23:47 -06:00
vilmibm
c5a511a2d1
Revert "prefix branch names for local pr checkout"
...
This reverts commit 5b8d7c1841 .
2020-02-13 17:16:53 -06:00
Anowar Islam
2c2c8a9991
added fix for empty body in issue preview
2020-02-13 01:44:03 -08:00
Anowar Islam
8f9574be35
added fix for empty body in pr preview
2020-02-13 01:43:51 -08:00
vilmibm
212dc1da1d
properly specify head ref for cross-repo/same-branch
2020-02-12 16:11:04 -06:00
vilmibm
2ff31909cd
use new helper
2020-02-12 11:33:24 -06:00
vilmibm
4f10a6d813
do not use local template files if overriding base repo
2020-02-12 08:57:55 -06:00
vilmibm
6732aa9725
fix tests
2020-02-12 08:48:25 -06:00