mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-11 00:10:08 +00:00
8 lines
285 B
Bash
Executable file
8 lines
285 B
Bash
Executable file
#!/bin/sh
|
|
|
|
url="https://raw.githubusercontent.com/felipec/git-completion"
|
|
version="1.3.7"
|
|
|
|
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"
|