Posted by The TechMentor in Journal
on Feb 8th, 2019
=LEFT(<cn>,LEN(<cn>)-LEN(<hostname>)-1) Example =LEFT(D2,LEN(D2)-LEN(A2)-1)
Posted by The TechMentor in git
on Feb 6th, 2019
1. list all remote tags git ls-remote --tags 2. delete local tag git tag -d V_1_0_1 3. push tag deletion to remote git push origin :refs/tags/V_1_0_1 4. tag local branch again git tag V_1_0_1 5. push tag to remote git push origin tag V_1_0_1