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 push all tags

git push origin --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 remove a package in laravel 8 
Shell :: sh wait 10 seconds 
Shell :: powershell check if string contains a word 
Shell :: bash display items in array 
Shell :: eval minikube docker-env daemon 
Shell :: linux memory usage 
Shell :: setup user in git 
Shell :: add dns in ubuntu permanently 
Shell :: ubuntu 20.04 uninstall imagemagick 
Shell :: uninstall vmware workstation 
Shell :: search for word in text files ubuntu 
Shell :: wsl shutdown reboot 
Shell :: Your browser or operating system is no longer supported. You may need to install the latest updates to your operating system. 
Shell :: gitlab reconfigure 
Shell :: flutter linux cmake error 
Shell :: rrors were encountered while processing: /var/cache/apt/archives/libpython3.10-stdlib_3.10.4-1+focal2_amd64.deb 
Shell :: babel core 
Shell :: jenkins initialadminpassword linux 
Shell :: how to search file name in linux using wildcard 
Shell :: install openjdk 8 debian 10 
Shell :: linux see remaining disk space 
Shell :: raspberry config command line 
Shell :: wsl default user 
Shell :: install babel command line 
Shell :: installing isomorphic-fetch and simply doing 
Shell :: conda install more-itertools 
Shell :: Apply executable permissions to the binary: permission denied 
Shell :: install git win terminal 
Shell :: Failed to start nginx.service: Unit nginx.service not found. 
Shell :: github minishell1 
ADD CONTENT
Topic
Content
Source link
Name
8+2 =