aboutsummaryrefslogtreecommitdiffstats
path: root/Readme.md
diff options
context:
space:
mode:
authorMichael Muré <batolettre@gmail.com>2018-07-14 23:16:54 +0200
committerMichael Muré <batolettre@gmail.com>2018-07-14 23:16:54 +0200
commitaa51c6b3dc1bbb8db11653611130df5020746633 (patch)
tree94df85345e478aca4797666a41552da368a0bd60 /Readme.md
parent54b41c604bd6814e1bc8131cb1fa291d8aff25d1 (diff)
downloadgit-bug-aa51c6b3dc1bbb8db11653611130df5020746633.tar.gz
basic readme
Diffstat (limited to 'Readme.md')
-rw-r--r--Readme.md46
1 files changed, 46 insertions, 0 deletions
diff --git a/Readme.md b/Readme.md
new file mode 100644
index 00000000..caa26b5b
--- /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 [<remote>]
+```
+
+And pull for updates:
+```
+git bug pull [<remote>]
+```
+
+## Contribute
+
+PRs accepted.
+
+## License
+
+
+GPLv3 © Michael Muré