Information Technology Reference
In-Depth Information
The git directory: 28M .git
Number of files in the working dir: 254
How It Works
Using the $ git clone command you can clone any public repository available on
Github or Bitbucket. The alias created in Recipe 2-10 will help you to get some basic
information about the project.
2-12. Visualizing the history of a reposit-
ory
Problem
You want to display the history of the HTML 5 Boilerplate repository in a graphical
form using a gitk application.
Solution
Clone the HTML 5 Boilerplate repository:
$ cd git-recipes
$ git clone https://github.com/h5bp/html5-boilerplate.git
02-12
Enter the 02-12/ directory:
$ cd 02-12
and run the gitk command:
$ gitk
Search WWH ::




Custom Search