Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

git create new tag

Create a new tag
git tag -a v1.4 -m "my version 1.4"

Push to your remote repo
git push origin --tags
Comment

how to create tag in git

git tag -a v1.4 -m "my version 1.4"
Comment

Create git tags

// create git-tag
$ git tag -a v1.4 -m "my version 1.4"
$ git tag
v0.1
v1.3
v1.4

// Unfortunately, git push doesn’t push your tags by default, so you’ll need 
to do the following to push both the new commit and the tag to your repo:

git push && git push --tags
Comment

PREVIOUS NEXT
Code Example
Shell :: git log by date 
Shell :: ubuntu list all folders taking up space 
Shell :: loopback install 
Shell :: centos php install 
Shell :: how to check if ip is up bash script 
Shell :: adb devices offline 
Shell :: ubuntu empty swap 
Shell :: como instalar visual studio code en ubuntu 20.04 
Shell :: what process consuming RAM 
Shell :: windows security not opening windows 11 
Shell :: android turn off emulator in mac 
Shell :: wsl file location 
Shell :: how to uncommit in git 
Shell :: disable selinux in redhat 
Shell :: wsl windows 
Shell :: linux invalid filename fix 
Shell :: how to update vscode on ubuntu 
Shell :: QNAP NAS crontab reset 
Shell :: snap install docker 
Shell :: vite react command 
Shell :: how to install openssl on windows 10 
Shell :: ubuntu create archive split 
Shell :: git reset origin branch 
Shell :: find max depth linux 
Shell :: linux how to kill any process on port 
Shell :: git tree 
Shell :: change remote git url 
Shell :: stylelint run 
Shell :: where is my .git config mac 
Shell :: install chance in cypress 
ADD CONTENT
Topic
Content
Source link
Name
4+6 =