Skip to content

Commit f9e767b

Browse files
committed
updating to v0.2.0
1 parent a18ec7c commit f9e767b

File tree

2 files changed

+10
-2
lines changed

2 files changed

+10
-2
lines changed

README.md

+9-1
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,19 @@ Change the version for the [version](https://github.com/felipem1210/git-helper/t
1313
### Linux amd64
1414

1515
```sh
16-
export GITHELPER_VERSION=0.1.1
16+
export GITHELPER_VERSION=0.2.0
1717
curl -L "https://github.com/felipem1210/git-helper/releases/download/v${GITHELPER_VERSION}/git-helper_${GITHELPER_VERSION}_linux_amd64.tar.gz" |tar xzv -C /tmp
1818
sudo mv /tmp/git-helper /usr/local/bin/git-helper
1919
```
2020

21+
### MacOS amd64
22+
23+
```sh
24+
export GITHELPER_VERSION=0.2.0
25+
curl -L "https://github.com/felipem1210/git-helper/releases/download/v${GITHELPER_VERSION}/git-helper_${GITHELPER_VERSION}_darwin_amd64.tar.gz" |tar xzv -C /tmp
26+
sudo mv /tmp/git-helper /usr/local/bin/git-helper
27+
```
28+
2129
### Envars needed
2230

2331
* Define the envar WORKING_DIR. This must be the folder where you have all the repositories you want to manage.

cmd/root.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ import (
2626
// rootCmd represents the base command when called without any subcommands
2727
var rootCmd = &cobra.Command{
2828
Use: "githelper",
29-
Version: "v0.1.1",
29+
Version: "v0.2.0",
3030
Short: "A cli tool to help you manage git in multiple repositories",
3131
Long: `git-helper is a cli tool to help you manage git in multiple repositories
3232

0 commit comments

Comments
 (0)