Skip to content

Commit

Permalink
Add section about Git's instaweb command, thanks to @jdkanani ❤️
Browse files Browse the repository at this point in the history
  • Loading branch information
Rafal Chmiel committed Apr 14, 2014
1 parent c492824 commit e81076b
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ A collection of cool hidden and not so hidden features of Git and GitHub. This c
- [Styled Git Log](#styled-git-log)
- [Git Query](#git-query)
- [Merged Branches](#merged-branches)
- [Web Server for Browsing Local Repositories](#web-server-for-browsing-local-repositories)
- [Git Configurations](#git-configurations)
- [Aliases](#aliases)
- [Auto-Correct](#auto-correct)
Expand Down Expand Up @@ -506,6 +507,19 @@ Will give you a list of branches that have not been merged into your current bra

[*Read more about the Git `branch` command.*](http://git-scm.com/docs/git-branch)

### Web Server for Browsing Local Repositories
Use the Git `instaweb` command to instantly browse your working repository in `gitweb`. This command is a simple script to set up `gitweb` and a web server for browsing the local repository.

```bash
$ git instaweb
```

Opens:

![Git instaweb](http://i.imgur.com/Dxekmqc.png)

[*Read more about the Git `instaweb` command.*](http://git-scm.com/docs/git-instaweb)

### Git Configurations
Your `.gitconfig` file contains all your Git configurations.

Expand Down

0 comments on commit e81076b

Please sign in to comment.