Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

git commit and tag

git add .
git commit -m "some description"
git tag v0.1.9 # or any other text
git push origin master # push the commit
git push --tags origin # push the tags
Comment

git commit and tag

git tag -a v1.0 7cceb02 -m "Your message here"
Comment

git tag from commit

$ git tag <tag_name> HEAD   (for the last commit)
Comment

git tag older commit

git tag v1.2 9fceb02
Comment

PREVIOUS NEXT
Code Example
Shell :: install vim in wsl 
Shell :: macos git set vscode as editor 
Shell :: certbot apache subdomain 
Shell :: redis-server specify port 
Shell :: sed between two patterns 
Shell :: c linux compiler 
Shell :: how to install appindicator 
Shell :: libssl-dev ubuntu get version 
Shell :: linux find and remove bom from files 
Shell :: recursively change file permissions linux 
Shell :: check logstash config 
Shell :: how delete wireless connection raspberry pi terminal 
Shell :: copy first n files linux 
Shell :: tasksel uninstall package 
Shell :: awk first upper 
Shell :: Command to find os version of Webserver in nmap 
Shell :: restart fstab ununtu 
Shell :: install qtpy 
Shell :: how to push to git hub 
Shell :: use output of pipe xargs 
Shell :: get shared mailbox powershell exchange 2010 
Shell :: centos helm 
Shell :: Does Ubuntu use deb or rpm? 
Shell :: aws ssh warning unprotected private key file 
Shell :: how to install jupyterlab 
Shell :: speedtest cli install 
Shell :: vue 3 qr code reader 
Shell :: Rename File Extension In folder 
Shell :: go to a tag in git 
Shell :: gatsby typescript template 
ADD CONTENT
Topic
Content
Source link
Name
4+8 =