Skip to content
This repository was archived by the owner on Jan 4, 2025. It is now read-only.

Commit 0523104

Browse files
🆕 Add purge command
1 parent 8bbffd6 commit 0523104

File tree

5 files changed

+59
-4
lines changed

5 files changed

+59
-4
lines changed

Gopkg.lock

+9
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Gopkg.toml

+4
Original file line numberDiff line numberDiff line change
@@ -56,3 +56,7 @@
5656
[[constraint]]
5757
name = "github.com/briandowns/spinner"
5858
version = "1.2.0"
59+
60+
[[constraint]]
61+
branch = "master"
62+
name = "github.com/mattn/go-pipeline"

args.go

+6-4
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ Usage:
1313
gowl edit [-e=<editor> | --editor=<editor>]
1414
gowl web
1515
gowl list
16+
gowl purge
1617
gowl -h | --help
1718
gowl -V | --version
1819
@@ -28,10 +29,11 @@ Options:
2829

2930
// Args created by CLI args
3031
type Args struct {
31-
CmdGet bool `docopt:"get"`
32-
CmdEdit bool `docopt:"edit"`
33-
CmdWeb bool `docopt:"web"`
34-
CmdList bool `docopt:"list"`
32+
CmdGet bool `docopt:"get"`
33+
CmdEdit bool `docopt:"edit"`
34+
CmdWeb bool `docopt:"web"`
35+
CmdList bool `docopt:"list"`
36+
CmdPurge bool `docopt:"purge"`
3537

3638
Editor string `docopt:"--editor"`
3739
Force bool `docopt:"--force"`

command.go

+36
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ import (
99
"time"
1010

1111
"github.com/briandowns/spinner"
12+
"github.com/mattn/go-pipeline"
1213
"github.com/pkg/errors"
1314
survey "gopkg.in/AlecAivazis/survey.v1"
1415
)
@@ -231,6 +232,41 @@ func CmdEdit(handler IHandler, root string, editor string) error {
231232
return nil
232233
}
233234

235+
// CmdPurge purges...
236+
func CmdPurge(handler IHandler, root string) error {
237+
selection, err := selectLocalRepository(root)
238+
if selection == "" {
239+
return nil
240+
}
241+
if err != nil {
242+
return errors.Wrap(err, "Fail to select a repository.")
243+
}
244+
245+
os.Chdir(selection)
246+
247+
branches, err := pipeline.Output(
248+
[]string{"git", "branch", "--merged", "master"},
249+
[]string{"grep", "-vE", "'^\\*|master$|develop$'"},
250+
)
251+
252+
if string(branches) == "" {
253+
print("No branches to purge.")
254+
return nil
255+
}
256+
257+
print("Purge branches...\n" + string(branches))
258+
259+
if _, err := pipeline.Output(
260+
[]string{"git", "branch", "--merged", "master"},
261+
[]string{"grep", "-vE", "'^\\*|master$|develop$'"},
262+
[]string{"xargs", "git", "branch", "-d"},
263+
); err != nil {
264+
return errors.Wrap(err, fmt.Sprintf("Fail to purge repositories %v", selection))
265+
}
266+
267+
return nil
268+
}
269+
234270
// CmdWeb executes `web`
235271
func CmdWeb(handler IHandler, root string, browser string) error {
236272
selection, err := selectLocalRepository(root)

main.go

+4
Original file line numberDiff line numberDiff line change
@@ -64,5 +64,9 @@ func main() {
6464
if err := CmdList(handler, getRoot(config)); err != nil {
6565
log.Fatal(errors.Wrap(err, "Fail to command `list`"))
6666
}
67+
case args.CmdPurge:
68+
if err := CmdPurge(handler, getRoot(config)); err != nil {
69+
log.Fatal(errors.Wrap(err, "Fail to command `purge`"))
70+
}
6771
}
6872
}

0 commit comments

Comments
 (0)