Someone in my Team created a symbolic link and committed it to git. I need to clone this project, update the symbolic link and commit it back. However when I did git clone, I don't see the file as symbolic link when I run "ls -al" command.It appears as a normal directory. I can see that file as a symbolic link on bit-bucket but not on UNIX box. Does symbolic link data get lost when we do git pull? How can I update the symbolic link if I don't even see that file as a symbolic link?
I have already seen this and it didn't answer my question. How does git handle symbolic links?