git log – POFTUT

Git Status – Show The Working Tree Status

The git status command is used to display the state of the current working directory and staging area. git status command will list staged changes, current changes. It will not list any history related information. List Tracked and Untracked Files We will start with a simple git status usage. We do not provide any option. … Read more

How To List Commit History with Git Log Command with Examples?

Git source code versioning tool provides a lot of features. One of the most important and useful features is log or history. We can use git log command in order to list, filter, view commit history in different ways. In this tutorial we will examine git log command usage in detail with examples. List Commit … Read more