git本地仓库删除后从远程仓库更新代码
1、$ ssh-agent bash
2、$ ssh-add ~/.ssh/id_rsa_hyp 添加ssh密匙
3、$ git fetch git@github.com:xxx.git master 从远程仓库fetch项目
4、也可以git fetch git@github.com:xxx.git master:temp建立新分支temp,将代码合并到新分支temp上,在删除新分支temp
5、$ git merge FETCH_HEAD 合并项目
6、$ git status 查看状态
7、$ git add -A 增加修改后的文件
8、$ git commit -m "optimization write protection!" 提交
9、$ git remote add origin git@github.com:xxx.git 添加远程仓库
10、$ git push -u origin master 推送到远程仓库
【git本地仓库删除后从远程仓库更新代码】转载于:https://www.cnblogs.com/yeshenmeng/p/11611423.html
推荐阅读
- gitlab|gitlab 通过备份还原 admin/runner 500 Internal Server Error
- gitlab|Gitlab升级(12.2.1到14.6.4)
- py连接mysql
- Flutter的ListView
- 常用git命令总结
- VM|VM ware 的 harbor 私有仓库搭建 (Ubuntu16.04)
- day16-Linux|day16-Linux 软件管理
- Xshell5|Xshell5 远程连接本地虚拟机Ubuntu16
- 圆形菜单
- Git学习-笔记摘要