Showing posts with label git. Show all posts
Showing posts with label git. Show all posts

Thursday, June 9, 2022

Git Change Repo

both are Same (Set new origin)

git remote set-url origin https://github.com/123123.git

git branch -M main

git push -u origin main

-----------------


git remote rm origin

git remote add origin https://github.com/123123.git

git branch -M main

git push -u origin main


------------------


after git push

git tag v1.0.1

git checkout v1.0.1


firebase login:use <email>



Wednesday, May 25, 2022

Git Replace without MR


 https://www.nickang.com/2017-09-30-replace-git-branch-code/

Friday, June 29, 2018

Git & IONIC

git branch develop
git checkout develop //use
git commit -am "change channel"
git push ionic develop

git checkout master
git merge develop
git commit -am "merge conflict" // checkin local
git push origin // push to server
git push ionic master // push to server

git status