
git-symbolic-ref
List of commands for git-symbolic-ref:
-
git-symbolic-ref:tldr:3f1be git-symbolic-ref: Store a reference by name, including a message with a reason for the update.$ git symbolic-ref -m "${message}" refs/${name} refs/heads/${branch_name}try on your machineexplain this command
-
git-symbolic-ref:tldr:71194 git-symbolic-ref: Read a reference by name.$ git symbolic-ref refs/${name}try on your machineexplain this command
-
git-symbolic-ref:tldr:838a9 git-symbolic-ref: For scripting, hide errors with `--quiet` and use `--short` to simplify ("refs/heads/X" prints as "X").$ git symbolic-ref --quiet --short refs/${name}try on your machineexplain this command
-
git-symbolic-ref:tldr:cb2c4 git-symbolic-ref: Delete a reference by name.$ git symbolic-ref --delete refs/${name}try on your machineexplain this command