Alper
Alper

Reputation: 3973

Way to see Github's network view of a project in git locally?

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.

Upvotes: 3

Views: 2765

Answers (3)

7yl4r
7yl4r

Reputation: 5368

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.

Upvotes: 1

Alper
Alper

Reputation: 3973

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.

Upvotes: 3

Ionică Bizău
Ionică Bizău

Reputation: 113445

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.

Upvotes: 2

Related Questions