From bc2805558507499f137ff25009d1253d707f0654 Mon Sep 17 00:00:00 2001 From: Marielle Volz Date: Mon, 5 Nov 2018 12:25:32 +0000 Subject: [PATCH] Fix to follow redirect As per #154, change to -L so that the redirect gets followed. As written this line downloads the html redirect page. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 98d158f..09890d9 100644 --- a/README.md +++ b/README.md @@ -372,7 +372,7 @@ git add -p ## Get git bash completion ```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?