-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
1. 根据sheet生成多个rpy 2. update gitignore 3. 移除多余的build文件 4. 增加协作开发文档 5. 重构解析逻辑 6. 增加菜单栏 7. 增加voice解析
- Loading branch information
Showing
30 changed files
with
597 additions
and
24,404 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
/output | ||
/.idea | ||
*.pyc | ||
*.pyc | ||
/build | ||
*.spec |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
## Git | ||
- 基本操作教程:https://www.liaoxuefeng.com/wiki/896043488029600 | ||
|
||
### 开发流程: | ||
- 从主分支将项目fork一份到自己的仓库 | ||
- 在本地将项目clone下来,并添加远程分支: | ||
- 例子: | ||
`git clone 项目地址` | ||
`git remote add develop [email protected]:HaruhiFanClub/Excel2RpyScript.git` | ||
|
||
- 完成功能开发之后,拉取主项目最新的改动: | ||
`git pull --rebase develop develop` | ||
- 在本地解决冲突之后将改动推到自己项目的分支: | ||
`git push origin develop` | ||
- 在github上提交pull request | ||
|
||
- 以上流程仅供参考(慎用rebase命令) |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.