InterviewSolution
Saved Bookmarks
| 1. |
Can you tell something about git reflog? |
|
Answer» This command tracks every single change made in the repository references (that can be branches or tags) and also maintains the branches/tags log HISTORY that was either created locally or CHECKED out. Reference logs such as the commit snapshot of when the branch was created or CLONED, checked-out, renamed, or any commits made on the branch are maintained by Git and listed by the ‘REFLOG’ command.
|
|