Navigating git using the CLI

preview_player
Показать описание
projects as they change over time. In this screencast,
histories and demonstrates how to review it using the built-in command-line
interface.

If graphical interfaces are more your style, check out this related screencast
on traversing git histories on

Рекомендации по теме
Комментарии
Автор

git log //Show all commit in meta form
git show <commit id> // Show detail of the commit
git branch --all. // Show all branch there is.
git checkout -b <branch name>

tgsoon