切換遠(yuǎn)程地址
1、切換遠(yuǎn)程倉(cāng)庫(kù)地址:
方式一:修改遠(yuǎn)程倉(cāng)庫(kù)地址
【git remote set-url origin URL】 更換遠(yuǎn)程倉(cāng)庫(kù)地址,URL為新地址。
gitremoteset-url https://gitee.com/xxss/omj_gateway.git
方式二:先刪除遠(yuǎn)程倉(cāng)庫(kù)地址,然后再添加
【git remote rm origin】 刪除現(xiàn)有遠(yuǎn)程倉(cāng)庫(kù)
【git remote add origin url】添加新遠(yuǎn)程倉(cāng)庫(kù)
gitremotermoriginhttps://github.com/****/omj_gateway.git git remote add origin https://gitee.com/xxss/omj_gateway.gi
2、【git remote -v 】查看遠(yuǎn)程倉(cāng)庫(kù)的地址
omj_gatewayhttps://github.com/****/omj_gateway.git(fetch) omj_gatewayhttps://github.com/xxs/omj_gateway.git(push) originhttps://gitee.com/xxss/omj_gateway.git(fetch) origin https://gitee.com/xxs/omj_gateway.git (push)
推送到指定地址分支
1、查看本地址和遠(yuǎn)程版本
git branch -a debug *develop main remotes/omj_gateway/develop remotes/omj_gateway/main remotes/origin/HEAD->origin/main remotes/origin/develop remotes/origin/main
remotes代表遠(yuǎn)程分支
git push <遠(yuǎn)程主機(jī)名> <本地分支名>:<遠(yuǎn)程分支名>
例:
git push omj_gateway develop:develop --force
git 版本回退
查看歷史版本
1、查看歷史版本 詳細(xì)提交歷史 (q退出)
git log
q退出
2、 最近提交版本簡(jiǎn)要
git reflog
回退本地版本
1、回退到上一個(gè)版本
git reset --hard HEAD^
2、回退某個(gè)版本
git reset --hard 530ae79
遠(yuǎn)程服務(wù)器回退版本
1、先回退本地git版本
2、查看git分支
git branch -v -a
3、推送到遠(yuǎn)程git
git push origin HEAD --force
審核編輯:湯梓紅
-
URL
+關(guān)注
關(guān)注
0文章
139瀏覽量
15340 -
倉(cāng)庫(kù)
+關(guān)注
關(guān)注
0文章
20瀏覽量
13541 -
Git
+關(guān)注
關(guān)注
0文章
199瀏覽量
15761
原文標(biāo)題:git 切換遠(yuǎn)程地址分支 推送到指定地址分支 版本回退
文章出處:【微信號(hào):嵌入式加油站,微信公眾號(hào):嵌入式加油站】歡迎添加關(guān)注!文章轉(zhuǎn)載請(qǐng)注明出處。
發(fā)布評(píng)論請(qǐng)先 登錄
相關(guān)推薦
評(píng)論