I have a file which I had checkout out using previous git hash code
using command :
git checkout 1a4f8901b3b3b52903ac7c8e7aa7a0a7ba95b4f1 -- example/abcxyz.php
now whenever I update any file and do git pull, git pull the
command is unable to pull the above checkout file.
so if anyone can help me to get the latest commit of that file . And why it is not checkout that file?
I am not sure what it is that you want to do with the checked out file. But here are possible solutions:
If you want to stash the checked out file
If you want to remove the changes done to the file
If you want to stage and commit the file
Let me know if any of these help you with your issue.