File tree 2 files changed +10
-2
lines changed
2 files changed +10
-2
lines changed Original file line number Diff line number Diff line change @@ -13,11 +13,19 @@ Change the version for the [version](https://github.com/felipem1210/git-helper/t
13
13
### Linux amd64
14
14
15
15
``` sh
16
- export GITHELPER_VERSION=0.1.1
16
+ export GITHELPER_VERSION=0.2.0
17
17
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
18
18
sudo mv /tmp/git-helper /usr/local/bin/git-helper
19
19
```
20
20
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
+
21
29
### Envars needed
22
30
23
31
* Define the envar WORKING_DIR. This must be the folder where you have all the repositories you want to manage.
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ import (
26
26
// rootCmd represents the base command when called without any subcommands
27
27
var rootCmd = & cobra.Command {
28
28
Use : "githelper" ,
29
- Version : "v0.1.1 " ,
29
+ Version : "v0.2.0 " ,
30
30
Short : "A cli tool to help you manage git in multiple repositories" ,
31
31
Long : `git-helper is a cli tool to help you manage git in multiple repositories
32
32
You can’t perform that action at this time.
0 commit comments