You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A created session should have a readable alias.
The alias would be stored permanently with its commit.
The session would be identified with a struct like this
typeSessionIdentifierstruct {
CommitIDstringAliasstring// Previously known as checkoutAliasTypeAliasType
}
const (
AliasTypestringAliasTypeLinkedAliasType="linked"// The alias is linked to its origin checkout (e.g. a branch or a tag)AliasTypeMadeUpAliasType="made-up"// The alias has been created by a random name generatorAliasTypeUserDefinedAliasType="user-defined"// The alias has been defined by the user
)
The aliases could be used for handling secondary applications permalinks
The text was updated successfully, but these errors were encountered:
A created session should have a readable alias.
The alias would be stored permanently with its commit.
The session would be identified with a struct like this
The aliases could be used for handling secondary applications permalinks
The text was updated successfully, but these errors were encountered: