From a2b8e1e2401f16e1e8cd3206c55157f654a76089 Mon Sep 17 00:00:00 2001 From: Swapnil Sankla Date: Tue, 10 Jul 2018 13:52:44 +0530 Subject: [PATCH] Add create and push tag commands --- README.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/README.md b/README.md index c553edb..e248e5e 100644 --- a/README.md +++ b/README.md @@ -30,6 +30,8 @@ P.S: All these commands are tested on `git version 2.7.4 (Apple Git-66)`. * [Track upstream branch](#track-upstream-branch) * [Delete local branch](#delete-local-branch) * [Delete remote branch](#delete-remote-branch) +* [Create tag](#create-tag) +* [Push tag](#push-tag) * [Delete local tag](#delete-local-tag) * [Delete remote tag](#delete-remote-tag) * [Undo local changes with the last content in head](#undo-local-changes-with-the-last-content-in-head) @@ -293,6 +295,18 @@ __Alternatives:__ git push origin : ``` + +## Create tag +```sh +git tag +``` + + +## Push tag +```sh +git push origin +``` + ## Delete local tag ```sh git tag -d