Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

git push tags

#from git 1.8.3 you can use
git push --follow-tags
#single tag push
git push origin <tag_name>
#All tags (if possible use --follow-tags 'cause it's safer)
git push --tags
Comment

git create tag and push

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

git add tag

git tag -a v1.2 
git push origin v1.2
Comment

git add tag

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

git push --tags
Comment

git create tag and push

$ git push origin v1.4
Counting objects: 14, done.
Delta compression using up to 8 threads.
Compressing objects: 100% (12/12), done.
Writing objects: 100% (14/14), 2.05 KiB | 0 bytes/s, done.
Total 14 (delta 3), reused 0 (delta 0)
To git@bitbucket.com:atlasbro/gittagdocs.git
* [new tag] v1.4 -> v1.4
Comment

git create tag and push

git tag <tagname>
Comment

PREVIOUS NEXT
Code Example
Shell :: how to install kubectl in ubuntu 
Shell :: webpack install webpack config 
Shell :: cp all files except one 
Shell :: windows start service 
Shell :: node modules folder not getting ignore in git 
Shell :: configure static ip address ubuntu server 20.04 
Shell :: generate git ssh key 
Shell :: ssh key generation 
Shell :: how to see users logged in linux 
Shell :: print in shell script 
Shell :: open files from terminal linux 
Shell :: remove all files matching a pattern in subdirectories 
Shell :: git new branch 
Shell :: install composer debian 
Shell :: docker login command line push 
Shell :: comprimir directorio linux 
Shell :: yarn react install 
Shell :: install git lfs 
Shell :: expand aliases 
Shell :: list files of type txt from cmd 
Shell :: minishift admin-user addon 
Shell :: how to find and kill a running process on a port in mac 
Shell :: ignore file git 
Shell :: push to github from terminal 
Shell :: git stash save 
Shell :: install docke machine 
Shell :: ubuntu locate binary file 
Shell :: openssl verify cert 
Shell :: rsync ssh 
Shell :: terraform remove from state 
ADD CONTENT
Topic
Content
Source link
Name
9+4 =