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 :: bad interpreter: /bin/python3^M: no such file or directory 
Shell :: ubuntu startup script 
Shell :: enable site 
Shell :: kubectl port-forward 
Shell :: windows cmd opens and closes 
Shell :: linux create user with homedir 
Shell :: expo install package version 
Shell :: what is github 
Shell :: commands to download metasploit on linux 
Shell :: how to mount a flash drive in wsl 
Shell :: INSTALL gedit on kali linux 
Shell :: bash get path of command 
Shell :: install bully kali 
Shell :: gitignore not working 
Shell :: amplify delete storage 
Shell :: material ui icons installation 
Shell :: Push an existing repository to an empty github repository 
Shell :: linux ping latency print on screen .sh file 
Shell :: grep search 
Shell :: install vmware workstation linux mint 
Shell :: install kubebuilder in macbook pro 
Shell :: github download 
Shell :: ubuntu install dbeaver 
Shell :: gtest filter command line 
Shell :: install pkgbuild arch 
Shell :: Trying to register Bundler::GemfileError for status code 4 but Bundler::GemfileError is already registered 
Shell :: branch conflicts 
Shell :: configure: error: --with-openssl was given but OpenSSL could not be detected 
Shell :: Compress files powershell 
Shell :: move all files in subdirectories to current directory linux 
ADD CONTENT
Topic
Content
Source link
Name
1+4 =