赞
踩
方式一:修改远程仓库地址
【git remote set-url origin URL】 更换远程仓库地址,URL为新地址。
git remote set-url https://gitee.com/xxss/omj_gateway.git
方式二:先删除远程仓库地址,然后再添加
【git remote rm origin】 删除现有远程仓库
【git remote add origin url】添加新远程仓库
- git remote rm origin https://github.com/****/omj_gateway.git
- git remote add origin https://gitee.com/xxss/omj_gateway.gi
- omj_gateway https://github.com/****/omj_gateway.git (fetch)
- omj_gateway https://github.com/xxs/omj_gateway.git (push)
- origin https://gitee.com/xxss/omj_gateway.git (fetch)
- origin https://gitee.com/xxs/omj_gateway.git (push)
-
- 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代表远程分支
git push <远程主机名> <本地分支名>:<远程分支名>
例:
git push omj_gateway develop:develop --force
1、查看历史版本 详细提交历史 (q退出)
git log
q退出
2、 最近提交版本简要
git reflog
1、回退到上一个版本
git reset --hard HEAD^
2、回退某个版本
git reset --hard 530ae79
远程服务器回退版本
1、先回退本地git版本
2、查看git分支
git branch -v -a
3、推送到远程git
git push origin HEAD --force
谢谢阅读!请大家帮忙点赞、转发、在看,为小编加鸡腿,请点亮关注,关注我不迷路,更多软硬件开发知识推送给您。
往期精彩
【经验】 cp -rf 命令中参数 -f 失效 ( 依旧要手动确认 )解决愿意付出
【openwrt】MT7628/7688 openwrt下启用串口2 UART2入坑指南
推荐一款vsCode 可能智能生成代码 代码补全 代码解释 代码纠错 AI插件 iFlyCode
「Shell」Linux shell 脚本编程——认识Shell(一)
【openwrt应用开发】openwrt交叉编译自己的应用程序入门--开发类似minicom串口终端
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。