~greenfoo/woj

Meta-tool for developer workflow simplification
0fb9e6bb — Fernando Ramos 2 years ago
v0.9.18
c8eea16c — Fernando Ramos 2 years ago
only ask for current and/or future sprints
edf311bf — Fernando Ramos 2 years ago
add error check for empty Jira boards list

refs

master
browse  log 
v0.9.18
release notes 

clone

read-only
https://git.sr.ht/~greenfoo/woj
read/write
git@git.sr.ht:~greenfoo/woj

You can also use your local clone with git send-email.

#What is this?

'woj' is a tool to make it easier the typical workflow of a software developer (ex: issue creation in Jira + git checkout/rebase/push + Bitbucket code review + ...)

See the "HelpFaq" section on file help.go for very detailed explanation of what 'woj' exactly is and how you can use it.

Tip: the rest of sections on that file are also a good source of
information.

#Build instructions

Build it as any other "go" program:

$ go build .

I particulary like to use this other command to obtain a static binary that runs on 99% of the Linux systems out there:

$ CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build .

If you want to cross-compile a Windows binary from Linux, use this other command instead:

$ CGO_ENABLED=0 GOOS=windows GOARCH=amd64 go build .