Browse git raw objects.
$ gem install git-object-browser
To browse .git directory:
$ git object-browser ./path/to/project
$ open http://localhost:8080/#/.git/
To dump .git directory (dump HTML/JSON/JS app):
$ git object-browser --dump path/to/dump/dir path/to/project
$ ${any_http_server} --port 8080 path/to/dump/dir
$ open http://localhost:8080/#/.git/
To dump .git step by step:
$ git object-browser --dump path/to/dump/dir --next path/to/project
$ ${any_http_server} --port 8080 path/to/dump/dir
$ open http://localhost:8080/#/step1/.git/
this command shows .git diff between previous step and current step.
- Fork it
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Added some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create new Pull Request