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

PREVIOUS NEXT
Code Example
Shell :: linux virtual audio cable 
Shell :: conda install pdf2image 
Shell :: git edit last commit message 
Shell :: vs code installed extensions list command 
Shell :: arch install fonts 
Shell :: how to view all the history of all your commands in linux 
Shell :: how to install mono on aws linux 
Shell :: rdp linux ubuntu 
Shell :: sdkman install 
Shell :: sqlmap enumerate databases 
Shell :: sed replace in file 
Shell :: ubuntu 20.04 how to stop apache2 from starting on startup 
Shell :: venv activate 
Shell :: bash sleep milliseconds 
Shell :: Python plot graph in bash 
Shell :: rejected master fetch first 
Shell :: maven test with debug 
Shell :: rm recursive file pattern 
Shell :: ubuntu terminal find file recursive 
Shell :: run jar file command line 
Shell :: docker delete all containers 
Shell :: view git settings 
Shell :: how to install zlib 
Shell :: linux refresh .bashrc 
Shell :: ubuntu check ssh 
Shell :: conda install flask-cors 
Shell :: how to change ownership back to trustedinstaller windows 10 
Shell :: timestamp in bash 
Shell :: substring frequency 
Shell :: HOW TLONG FOR VS TO INSTALL?!?!? 
ADD CONTENT
Topic
Content
Source link
Name
5+5 =