Create links to branches

Can GitLab create branch links?

We currently use Gitolite, and cannot find a way to create such links.

Our git repositories do have one branch link though:
remotes/origin/HEAD -> origin/master
remotes/origin/master

Like this HEAD, is it possible for GitLab to create such links?

You bet!
Here’s an example of a link to a specific branch: https://gitlab.com/greg/example/tree/branchname

I don’t quite see it in that link of yours. I see two branches, master and branchname.

I checked out the project and could not see any other links other than HEAD

git branch -a
* master
  remotes/origin/HEAD -> origin/master
  remotes/origin/branchname
  remotes/origin/master

Could I with GitLab create

  remotes/origin/V1.0
  remotes/origin/ReleaseA -> origin/V1.0

Then later change the link

  remotes/origin/V1.0
  remotes/origin/V1.1
  remotes/origin/ReleaseA -> origin/V1.1

Anyone know if this is possible?