Computer Science, asked by dad40, 10 months ago

Which command helps you track the revisions of your revisions in git ?


git reflog
git track
git revision trak
git logref

Answers

Answered by as8ab0
1

Answer:

git reflog

Explanation:

git revision track

Answered by mindfulmaisel
1

Git reflog helps in tracking the revisions of the revisions in git.

Explanation:

  • Git revisions are used for specifying the revisions and its ranges for the Git. Most of the commands present in the Git usually take revision parameters as its arguments.  
  • Based on that command, they will denote a particular commit or command which gone through the revision graph such as git - reflog.  
  • In addition to that, other Git commands such as git - push and git - show can also be used for taking the revision parameters.
Similar questions