Posts

Showing posts from May, 2022

Git Commands : Tags

 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++    +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Topic : Tags :  Reference : https://git-scm.com/book/en/v2/Git-Basics-Tagging >>> Listing Your Tags $ git tag v1.0 v2.0 >>> You can also search for tags that match a particular pattern. The Git source repo, for instance, contains more than 500 tags. If you’re interested only in looking at the 1.8.5 series, you can run this:  $ git tag -l "v1.8.5*" v1.8.5 v1.8.5-rc0 v1.8.5-rc1 v1.8.5-rc2 v1.8.5-rc3 v1.8.5.1 v1.8.5.2 v1.8.5.3 v1.8.5.4 v1.8.5.5 >>> Creating Tags Git supports two types of tags: lightweight and annotated . A lightweight tag is very much like a branch that doesn’t change — it’s just a pointer to a specific commit. Annotated tags, however, are stored as full objects in the Git database. They’re checksummed; contain the tagger name, email, and date; have a tagging message; ...

GIT CheetSheet

 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++   +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++   Pull a particular branch from GitHub  Serviceconnetor is the branch name git clone -b serviceconnector https://github.com/8x8/auto_gitops_oci_workspaces_tree_main.git