说明文件

This commit is contained in:
2024-05-13 10:48:54 +08:00
parent 70159d1e5c
commit 316508d38e

View File

@@ -1,6 +1,18 @@
### ubuntu-sdk-ide
### ubuntu-sdk-ide
1. ubuntu touch 用的集成开发环境
2. 原始仓库: https://launchpad.net/ubuntu-sdk-ide
3. 原始仓库开源协议: GNU LGPL v3
4. 转换后 git 仓库: https://git.kuailexs.com/ubports-cn/ubuntu-sdk-ide_orig
5. 直接转换后的git仓库因代码里有.git等目录,无法推送到github、gitlib、gitee等免费git服务上
6. 仓库最后一个提交记录: Remove hard-coded /usr/bin/ prefix from ubuntuconstants. Fixes: https://bugs.launchpad.net/bugs/1647484
### ubuntu touch 用的开发环境
1. 从Bazaar仓库转git仓库
2. 原始仓库最后提交:170. Remove hard-coded /usr/bin/ prefix fr..
```
# 安装转换工具
apt-get install bzr-fastimport
# 下载Bazaar仓库代码
bzr branch lp:ubuntu-sdk-ide
# 转成git仓库
git init
git init bzr fast-export --plain . | git fast-import
git push ... mater
```