Mislav Marohnić
eee32f324c
Fix AskStubber erroring out when there are more asks than stubs
2020-09-23 19:55:11 +02:00
Mislav Marohnić
e2efc0b8a3
Fix pr create when branch was already pushed to a non-base remote
2020-09-23 19:53:27 +02:00
Mislav Marohnić
f9783fe812
Add exec.Command stub mechanism that matches by arguments
...
Our previous command stub mechanism matches stubs sequentially, which leads to brittle tests when the exec calls get reordered or removed in the implementation.
2020-09-23 18:38:29 +02:00
zacanger
f17d9672f5
fix(browser): show message if $BROWSER isn't in $PATH ( #1749 )
2020-09-23 12:17:54 +02:00
Nate Smith
929e082c13
Merge pull request #1891 from hugolgst/patch-1
...
Add Nix/NixOS instructions to install the package
2020-09-22 12:07:22 -05:00
Nate Smith
060ccd1eda
Merge pull request #1781 from cristiand391/fix-gist-id-extraction
...
Fix gist ID extraction from url
2020-09-22 12:04:04 -05:00
Mislav Marohnić
1e7a7972fb
Merge pull request #1889 from mmontes11/pr-checkout-on-detached-head
...
Fixed gh pr checkout on detached HEAD
2020-09-22 18:42:38 +02:00
Nate Smith
de3ef151ef
Merge pull request #1893 from mmontes11/tip-access-token-with-hostname
...
Access token tip message using hostname
2020-09-22 11:39:19 -05:00
Martín Montes
cacf0157b3
Using ghinstance.OverridableDefault() instead of a harcoded hostname
2020-09-22 18:22:29 +02:00
Martín Montes
793e866850
Using assert.Regexp for testing stderr's content
2020-09-22 17:50:57 +02:00
Martín Montes
81caade918
Access token tip message using hostname
2020-09-22 12:32:37 +02:00
Hugo Lageneste
75a0b5edbb
Add Nix/NixOS instructions to install the package
2020-09-22 08:04:49 +02:00
Cristian Dominguez
a7a90b3a4b
Move gist URL tests to its own file
2020-09-21 21:35:07 -03:00
Cristian Dominguez
55a8f3d8ca
Make gh gist view and edit commands reuse logic for id extraction
2020-09-21 21:28:04 -03:00
Martín Montes
bb1005be51
Fixed gh pr checkout on detached HEAD
2020-09-22 00:25:49 +02:00
Nate Smith
012b004e10
Merge pull request #1888 from nasirhm/minor_fix_install_linux
...
fix: Capitalization and addition of `Enterprise` in install_linux
2020-09-21 16:44:27 -05:00
Nate Smith
2a9b5de8c0
Merge pull request #1828 from y-yagi/do-not-send-requests-when-unnecessary
...
Don't send a request when the contents haven't changed
2020-09-21 16:40:41 -05:00
Nate Smith
e3f21a58cc
Merge pull request #1816 from OjasWadhwani/parseEmoji
...
Emoji parsing in Readme content
2020-09-21 16:35:41 -05:00
Nate Smith
0234aa32bb
Merge pull request #1824 from arcanericky/bug/httpstatuscodes
...
Use status codes from http package
2020-09-21 16:28:02 -05:00
Nasir Hussain
e50f7b8356
fix: Capitalization and addition of Enterprise in install_linux
...
Capitalized: `OS` of `CentOS`
Addition of `Enterprise` in `Redhat Linux`
2020-09-22 02:16:01 +05:00
Nate Smith
cd01880054
Merge pull request #1767 from yusufsahinhamza/fix-executable-path
...
Fix debian executable path
2020-09-21 15:52:34 -05:00
Nate Smith
d53fa9a8d3
Merge pull request #1877 from 0atman/patch-1
...
Clarify Linux distros
2020-09-21 15:06:40 -05:00
Nate Smith
e191c8fa02
Merge pull request #1856 from tomrule007/patch-1
...
Installation Guide on Linux - missing dependency
2020-09-21 15:05:58 -05:00
Nate Smith
b08da16c9e
Merge pull request #1880 from cli/fix-repo-create-name
...
Respect interactive repo name input on create
2020-09-21 14:58:01 -05:00
Cristian Dominguez
d685d666b2
Set gist ID by default on all tests
2020-09-21 12:11:08 -03:00
Sam Coe
458d5cb42f
Respect interactive repo name input on create
2020-09-21 14:26:15 +02:00
Tristram Oaten
caf8764cd2
Clarify Linux distros
...
Grammar police here: "a couple" means two.
I've removed the phrase rather than fixing it, it doesn't add anything. Thanks!
2020-09-21 08:37:15 +01:00
Thomas Herzog
111c1618cb
Installation Guide on Linux - missing dependency
...
Not sure if this is a common error or if this is the best way to describe the fix but thought I would add something to help others.
OS: Debian GNU/Linux 9.13 (stretch)
Error running first command of Debian install : `sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-key C99B11DEB97541F0`
Full error message:
```
Executing: /tmp/apt-key-gpghome.Fuep9VI9UN/gpg.1.sh --keyserver hkp://keyserver$
gpg: failed to start the dirmngr '/usr/bin/dirmngr': No such file or directory
gpg: connecting dirmngr at '/tmp/apt-key-gpghome.Fuep9VI9UN/S.dirmngr' failed: $
gpg: keyserver receive failed: No dirmngr
```
Reason: Missing dependency `dirmngr`
solution: install `dirmngr` by running: `sudo apt-get install dirmngr`
2020-09-19 15:52:05 -07:00
Cristian Dominguez
ef9b75e1f6
Add tests for gist URL check
2020-09-19 18:50:07 -03:00
Cristian Dominguez
2af136cc78
Return error if it's an invalid URL
2020-09-19 18:48:00 -03:00
Nate Smith
e930122a0c
Merge pull request #1834 from nejat-njonjo/ubuntu-installation
...
Installation Guide on Linux
2020-09-19 10:46:48 -05:00
nejat-njonjo
e2cca5d92a
adding hkp:// and :80 does the trick
2020-09-19 10:57:34 +02:00
yuuji.yaginuma
943dcef478
Don't send a request when the contents haven't changed
...
By doing this, the command will finish faster if the user canceled
the editing.
2020-09-19 15:25:07 +09:00
Ricky Pike
f1d675f137
use status codes from http package
2020-09-18 19:13:32 -05:00
2017A7PS0125G
cd3e9c44cf
gofmted file
2020-09-19 00:59:35 +05:30
2017A7PS0125G
5b413da745
Emoji parsing in Readme content
2020-09-19 00:24:22 +05:30
Nate Smith
921a2993ab
Update install_linux.md
2020-09-18 13:16:06 -05:00
Nate Smith
d336fab5ff
Update install_linux.md
2020-09-18 13:13:24 -05:00
Nate Smith
3829888a96
Merge pull request #1766 from mmontes11/view-specific-branch-of-repo
...
Added option to specify branch in gh repo view
2020-09-18 12:41:07 -05:00
Nate Smith
21c12ce5d8
Merge pull request #1757 from cli/ubuntus
...
support more ubuntus
2020-09-18 12:17:54 -05:00
zacanger
f6aa6b0980
chore: add make clean to remove bin and manpages ( #1776 )
2020-09-18 18:20:55 +02:00
Mislav Marohnić
49e9edea4a
Merge pull request #1803 from timsueberkrueb/patch-1
...
Fix typo in install_linux.md
2020-09-18 16:00:30 +02:00
Tim
8cb3bc0116
Fix typo in install_linux.md
2020-09-18 15:20:13 +02:00
Yusuf Sahin HAMZA
c7aee8ddc4
Fix debian executable path
2020-09-18 16:16:56 +03:00
Mislav Marohnić
172feebed5
Merge pull request #1784 from anishmo99/trunk
...
Update command-line-syntax.md
2020-09-18 13:42:50 +02:00
Mislav Marohnić
cb317136d2
Merge pull request #1785 from y-yagi/fix_typo
...
Fix typo overriden -> overridden
2020-09-18 13:27:16 +02:00
Mislav Marohnić
f99c0a5250
Merge pull request #1786 from y-yagi/fix-short-description-of-gist
...
Fix short description of `gist`
2020-09-18 13:26:28 +02:00
yuuji.yaginuma
4f3d0e5f7b
Fix short description of gist
...
The `gist` command allows doing other operations than
`create`(like `edit`, `view`, etc). So I think that `manage`
is more appropriate to the description.
2020-09-18 14:21:02 +09:00
yuuji.yaginuma
177f683876
Fix typo overriden -> overridden
2020-09-18 13:59:44 +09:00
Anish Mookherjee
bd8a457161
Update command-line-syntax.md
2020-09-18 10:22:18 +05:30