What's the recommended usage of a Git symbolic reference?

前端 未结 3 1021
自闭症患者
自闭症患者 2021-01-01 14:03

The following shell code correctly creates a chain of symbolic references

git symbolic-ref \"first\" \"refs/heads/master\"
git symbolic-ref \"second\" \"firs         


        
3条回答
  •  有刺的猬
    2021-01-01 14:23

    It would be desirable that symbolic links can be used more transparently and can be pushed as well. They could be a powerful tool for new workflows. Currently, if I create a symbolic link and then push is the server will have the hash not the link in the corresponding reference.

提交回复
热议问题