Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

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

how to create tag in git

git tag -a v1.4 -m "my version 1.4"
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 :: changing git remote url 
Shell :: docker save in windows 
Shell :: mac update path permanently 
Shell :: how to install pygame 
Shell :: what .net framework do i have installed 
Shell :: rc.local not running 
Shell :: show ip address linux 
Shell :: git download specific commit 
Shell :: microsoft-todo-unofficial ubuntu 
Shell :: grep search for string in directory 
Shell :: uninstall/remove libreoffice from ubuntu 
Shell :: github remote push 
Shell :: check if a variable is null in bash 
Shell :: remove unnecessary npm packages 
Shell :: sh is null if 
Shell :: E: Unable to acquire the dpkg frontend lock (/var/lib/dpkg/lock-frontend), is another process using it? 
Shell :: bash check for substring in string 
Shell :: delete commit head 
Shell :: list files by last modified linux 
Shell :: .gitignore is not ignoring directories 
Shell :: use find command to search file contents 
Shell :: how to show ubuntu logo in terminal 
Shell :: push a new branch 
Shell :: Check for process and kill if running Linux 
Shell :: erlang clear shell 
Shell :: flutter plugin installed but in flutter doctor it shows not installed 
Shell :: install slack ubuntu 
Shell :: debian full install qt5 
Shell :: change permissions on all sub-directories 
Shell :: ssh copy file from local to remote 
ADD CONTENT
Topic
Content
Source link
Name
4+4 =