GitNotes
GitNotes
--------------------------------
$git status
(now, files are visible in green color, which indicates that files are added
successfully)
$git commit -m "added new file test.txt"
(Now open the git hub and check the new created repository and you don't find
any files are reflected because still we have not pushed the files into remote
repository)
The last basic configuration command will let you view your Git configurations.
Running this command is the same as asking for a copy of your contract:
$ git config --list
$git log -n
git log -2
to check the logs in shortcut , i.e it displays only ids of the commits.
To check the logs of different developers who commit the code into the repository
$git log --author=<devreponame>
$ git log --author=cubeiplkumar
===========================