# git-bug > Bugtracker embedded in Git Would it be nice to not have to rely on a web service somewhere to deal with bugs ? Would it be nice to be able to browse and edit bug report offline ? `git-bug` is a bugtracker embedded in `git`. It use the same internal storage so it doesn't pollute your project. As you would do with commits and branches, you can push your bugs to the same git remote your are already using to collaborate with other peoples. :construction: This is for now a proof of concept. Expect dragons and unfinished business. :construction: ## 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 ! In the future, pre-compiled binary will be provided for convenience. ## 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 [] ``` ## All commands ```bash # Display available commands git bug commands [