Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

change github release date

# Fixing tag named '1.0.1'
git checkout 1.0.1               # Go to the associated commit
git tag -d 1.0.1                 # Locally delete the tag
git push origin :refs/tags/1.0.1 # Push this deletion up to GitHub

# Create the tag, with a date derived from the current head
GIT_COMMITTER_DATE="$(git show --format=%aD | head -1)" git tag -a 1.0.1 -m"v1.0.1"

git push --tags                  # Send the fixed tags to GitHub
Comment

change github

git status [<options>…​] [--] [<pathspec>…​]
Comment

PREVIOUS NEXT
Code Example
Shell :: how to check a path is file or director in shell script 
Shell :: nx scaffolding 
Shell :: verify SHA256 in Windows Power Shell 
Shell :: terminal shortcuts 
Shell :: bash tab adds backslash before dollar sign 
Shell :: image to docker file online 
Shell :: powershell get-aduser global catalog 
Shell :: personal - git config user 
Shell :: see postrouting rules linux 
Shell :: move all files in one folder to another too many files mv: Argument list too long 
Shell :: docker run +"--entrypoint" args 
Shell :: carriage return in bat file 
Shell :: git pull auto rebase accept incoming 
Shell :: pip install imread 
Shell :: bash complete 
Shell :: how to logout dockerhub 
Shell :: open app in background linux 
Shell :: influxdb save time range to csv 
Shell :: docker: Cannot connect to the Docker daemon at tcp://localhost:2375. Is the docker daemon running? 
Shell :: drush user login 
Shell :: wsl start windows program 
Shell :: how to create a file and multiple lines to it in unix 
Shell :: get specific version of package 
Shell :: metasploit rc 
Shell :: Install both Heimdall Proxy and Central Console on a single host 
Shell :: eks cluster command for own CNI deployment 
Shell :: install Llms on Ubuntu 
Shell :: oracle number of cpus 
Shell :: from one terminal tab to another linux 
Shell :: what is bash os 
ADD CONTENT
Topic
Content
Source link
Name
7+9 =