1. Sublime安装插件报错解决办法
错误:There are no packages available for installation
解决办法:
1 | Step1: |
2. Github转移项目到Coding.net
笔者的需求:个人博客部署系统代码不需要进行在github上进行公开,github私有项目又需要付费,感觉不值,所以有此次需求
1. Coding.net上建立一个新的私有仓库(有就不用建立)
2.Coding.net配置公钥,git操作需要权限
1 | Step1 |
3. 把github上的代码clone到指定路径
1 | git clone --bare https://github.com/***/******.git |
4.使用镜像推送的方式上传代码到新的服务器
1 | cd xxxx.git |
5.删除本地代码
1 | cd ..//返回上一路径 |
6.从新服务器clone下来,就是你想要的库了
1 | git clone https://git.coding.net/cc412/xxxx.git |