You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
8 lines
283 B
8 lines
283 B
#!/bin/sh
|
|
|
|
url="https://raw.githubusercontent.com/felipec/git-completion"
|
|
version="1.2"
|
|
|
|
curl -s -o _git "${url}/v${version}/git-completion.zsh" &&
|
|
curl -s -o git-completion.bash "${url}/v${version}/git-completion.bash" &&
|
|
curl -s -o git-prompt.sh "${url}/v${version}/git-prompt.sh"
|