From aa51c6b3dc1bbb8db11653611130df5020746633 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michael=20Mur=C3=A9?= Date: Sat, 14 Jul 2018 23:16:54 +0200 Subject: [PATCH] basic readme --- Readme.md | 46 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 46 insertions(+) create mode 100644 Readme.md diff --git a/Readme.md b/Readme.md new file mode 100644 index 0000000000000000000000000000000000000000..caa26b5be1a175f18b76ad3cc2c376aaec24627c --- /dev/null +++ b/Readme.md @@ -0,0 +1,46 @@ +# git-bug + +> Bugtracker embedded in Git + +## Install + +```shell +go get github.com/MichaelMure/git-bug +``` + +If it's not done already, add golang binary directory in your PATH: + +```bash +export PATH=$PATH:$GOROOT/bin:$GOPATH/bin +``` + +That's all ! + +## Usage + +It's really a WIP but you can already create a bug: + +``` +git bug new "This doesn't even build" +``` + +Your favorite editor will open to write a description. + +You can push your new entry to a remote: +``` +git bug push [] +``` + +And pull for updates: +``` +git bug pull [] +``` + +## Contribute + +PRs accepted. + +## License + + +GPLv3 © Michael Muré