Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Displaying the commit tree in github?

Tags:

github

A simple question, but one I can't figure out for myself:

Is there a way to persuade github --- not the git command line tool! --- to show me a graphical view of the commit tree rather than a flat list of commits?

like image 251
David Given Avatar asked Aug 26 '15 22:08

David Given


People also ask

How do you see the commit tree?

`git log` command is used to view the commit history and display the necessary information of the git repository. This command displays the latest git commits information in chronological order, and the last commit will be displayed first.

How can I see my commit code in GitHub?

If you have the hash for a commit, you can use the git show command to display the changes for that single commit. The output is identical to each individual commit when using git log -p .

How do I get a list of commits?

The most basic and powerful tool to do this is the git log command. By default, with no arguments, git log lists the commits made in that repository in reverse chronological order; that is, the most recent commits show up first.

What is commit tree in git?

git-commit-tree is a low level command which commits a single tree object but does not perform any of the follow-up reference and Head work that git-commit does.


2 Answers

In the main page of the repository, click Insights -> click Network.

like image 112
etang Avatar answered Sep 19 '22 01:09

etang


You can view a graphical representation in the Network tab on the Graphs page.

like image 27
mipadi Avatar answered Sep 22 '22 01:09

mipadi