Featured
-
No Featured Found!
Tags
Viewing the commit logs
Previous Blogs
Intialize git repostiory
First Commit
Now viewing our past commit logs we do with git log, and this will show us the log of commits that have taken place till now.
naveen@naveen:/var/www/html/RND/symfony_sites/s...
commiting a first file using git
As we have initialize here our first project we are now ready to make our first commit.
Check the status naveen@naveen:/var/www/html/RND/symfony_sites/symfony_todoapp$ git status
Git will show the message
On branch master
Initia...
Get all modified files of all commits in a branch
We can check the modified files of a branch using:
git status
But it will list all those files which are not committed. Once these will be committed "git status" will not list these files. For this we can use following command which will ...