KO
|
EN
gitlite — search
Search
#javascript
#python
#hacktoberfest
#react
#ai
#typescript
#llm
#go
#golang
#android
#machine-learning
#rust
#deep-learning
#linux
cli-v2
★ 13
Open GitHub ↗
The new Codefresh CLI tool
Download README (.md)
Explore Similar Repositories
typora-latex
:
A LaTeX-style theme for Typora. Supports Chinese characters on Windows and macOS.
tutorial_telemetry
:
A Haskell Tutorial about parsing Satellite Telemetry
NumPytorch
:
A numpy based python package with pytorch-like interface for training a Convolution Neural Network.
coredns-acme
:
CoreDNS plugin to use ACME for getting your TLS/SSL certs
RefreshableScrollView
:
No description available.
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
cli-v2
?
Download (.md)
<p align="center"><img src="./docs/assets/logo.svg" alt="Argo Logo"></p> # Codefresh CLI V2 []( https://g.codefresh.io/public/accounts/codefresh-inc/pipelines/new/60ae2ae330acb8f9c9bace7f) [](https://codecov.io/gh/codefresh-io/cli-v2) [](https://goreportcard.com/report/github.com/codefresh-io/cli-v2) ## Introduction The new Codefresh CLI tool. ## Installation ### Using brew: ```bash # tap Codefresh homebrew repo brew tap codefresh-io/cli # install cf2 CLI brew install cf2 # check the installation cf version ``` ### Mac ```bash # get the latest version or change to a specific version VERSION=$(curl --silent "https://api.github.com/repos/codefresh-io/cli-v2/releases/latest" | jq -r ".tag_name") # download and extract the binary curl -L --output - https://github.com/codefresh-io/cli-v2/releases/download/$VERSION/cf-darwin-amd64.tar.gz | tar zx # move the binary to your $PATH mv ./cf-* /usr/local/bin/cf # check the installation cf version ``` ### Linux ```bash # get the latest version or change to a specific version VERSION=$(curl --silent "https://api.github.com/repos/codefresh-io/cli-v2/releases/latest" | jq -r ".tag_name") # download and extract the binary curl -L --output - https://github.com/codefresh-io/cli-v2/releases/download/$VERSION/cf-linux-amd64.tar.gz | tar zx # move the binary to your $PATH mv ./cf-* /usr/local/bin/cf # check the installation cf version ```