How To Make The Version Selectably for custom Package On Github?

I use my custom package like this:
“dependencies”: {
com.a.a":"git@github.com:name/package.git”
}

I make tags like 1.1.0 to mark version.
But i found the only “https:” git url can add tag like #1.1.0 on the end of the url.
Can i add #1.1.0 on the end of “git@” start url?
And,what should i do to select version in the package manager?

Hi @Mr_TZ ,

Have you taken a look at the Unity User Manual section about Git packages URL? Go here if you haven’t.

Regards,

Pascal

1 Like

Thank you~
Found the solution in the document finaly!
use “ssh://git@abc/efg.git” instead of "git@abc/efg.git "
And then add #tag on the end of url!

2 Likes