1# git-bug
2
3> Bugtracker embedded in Git
4
5## Install
6
7```shell
8go get github.com/MichaelMure/git-bug
9```
10
11If it's not done already, add golang binary directory in your PATH:
12
13```bash
14export PATH=$PATH:$GOROOT/bin:$GOPATH/bin
15```
16
17That's all !
18
19## Usage
20
21It's really a WIP but you can already create a bug:
22
23```
24git bug new "This doesn't even build"
25```
26
27Your favorite editor will open to write a description.
28
29You can push your new entry to a remote:
30```
31git bug push [<remote>]
32```
33
34And pull for updates:
35```
36git bug pull [<remote>]
37```
38
39## Contribute
40
41PRs accepted.
42
43## License
44
45
46GPLv3 © Michael Muré