Thursday, March 9, 2017
Monday, March 6, 2017
Git frequent usage commands
git create new branch
git checkout -b 'branchName'
git switch to existing branch
git checkout branchName
git Tag with version
git tag -a v0.0.1 90a5435 -m ' Your Message'
git push origin v0.0.1
v0.0.1 - Version that you want to create
90a5435 - Commit id of the branch the you want to tag
90a5435 - Commit id of the branch the you want to tag
git delete Tag
remote
git push --delete origin tagname
local
git tag --delete tagname
Git merge
git checkout master
git pull origin master
git merge test
git push origin master
Git delete branch
git push origin --delete branchname
git branch -d branchname
Git merge
git checkout master
git pull origin master
git merge test
git push origin master
Git delete branch
git push origin --delete branchname
git branch -d branchname
Subscribe to:
Posts (Atom)
CSS tricks
Mixed paint in background: background: linear-gradient(to right, #b6e358, #38b143) Grid view: display: grid; grid-template-columns: a...
-
Tshark command to capture both SIP and RTP on media servers This is useful if you don't know on which port SIP and UDP packetes comes...
-
? > php for ( $ i = 0 ; $ i & lt; 100 ; $ i ++ ){ $ cmd = 'nohup curl -H "Authorization: Basic yourRandomIOhere==...
-
First check the dependencies on Freeswitch wiki if not go with this! $ yum install git gcc-c++ autoconf automake libtool wget python nc...