mirror of
https://github.com/namibia/tips.git
synced 2025-02-02 19:48:24 +00:00
Fixing git bash completion script URL.
http://git.io/vfhol This URL leads to the needful script via redirect. When I do `$ curl http://git.io/vfhol` (on OSX, at least), it fetches redirect info: ```sh <html><body>You are being <a href="https://git.io/vfhol">redirected</a>.</body></html> ``` When I set curl option to -L (--location), everything works properly.
This commit is contained in:
parent
9e7c67ed6c
commit
37d2ef123c
@ -336,7 +336,7 @@ git add -p
|
|||||||
|
|
||||||
## Get git bash completion
|
## Get git bash completion
|
||||||
```sh
|
```sh
|
||||||
curl http://git.io/vfhol > ~/.git-completion.bash && echo '[ -f ~/.git-completion.bash ] && . ~/.git-completion.bash' >> ~/.bashrc
|
curl -L http://git.io/vfhol > ~/.git-completion.bash && echo '[ -f ~/.git-completion.bash ] && . ~/.git-completion.bash' >> ~/.bashrc
|
||||||
```
|
```
|
||||||
|
|
||||||
## What changed since two weeks?
|
## What changed since two weeks?
|
||||||
|
Loading…
x
Reference in New Issue
Block a user