문제

I am having one file in git and committed many times. Now i have to find the 50th revision of that file in git. I tried a lot but i didn't get. So kingly help me with the git command.

Thanks in advance

올바른 솔루션이 없습니다

다른 팁

You can do it like this:

$ git show HEAD~50:path/to/file

Try This....

git revert HEAD~50: .HEAD

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top