3

I find it somewhat ridiculous that I have to push branches to Github to be able to get a view what I can work with. Is there a way to get a user friendly view locally in git?

The git log --branches --remotes --tags --graph --oneline --decorate doesn't really do it for me.

I really like the github/network graph view.

Alper
  • 3,424
  • 4
  • 39
  • 45

3 Answers3

3

The tool I have found the best for this is GitUp ( http://gitup.co/ ) which shows you a highly customizable visualization with most of the things you would want to know about your project's state.

It is also really fast, so you can just keep it open while you work and it will always be up to date.

Alper
  • 3,424
  • 4
  • 39
  • 45
2

If you are using Windows or OS X, you can use GitHub Desktop which has such a feature:

On the left side you have the repositories and when you select one, you see the nice graph there. Screenshot from their website.

Community
  • 1
  • 1
Ionică Bizău
  • 109,027
  • 88
  • 289
  • 474
0

For linux users: the "network view" is featured in gitk, QGit, and probably many other git GUIs.

A comprehensive list of graphical interfaces (for all client OSes) can be found here, and git-scm has a very nice list with screenshots here.

7yl4r
  • 4,788
  • 4
  • 34
  • 46