11 2021 档案
摘要:$ cd /usr/local/lib $ sudo curl -O https://www.antlr.org/download/antlr-4.7.2-complete.jar // 设置环境变量 $ vim .bash_profile $ export CLASSPATH=".:/usr/lo
阅读全文
摘要:1.查看远程仓库 $ git remote -v2.从远程获取最新版本到本地(从远程的origin仓库的master分支下载到本地并新建一个分支temp)$ git fetch origin master:temp3.比较本地的仓库和远程参考的区别$ git diff temp4. 合并temp分支
阅读全文
摘要:# -*- coding: utf-8 -*- from xmindparser import xmind_to_dict import xlwt # 记录列数,全局变量,还原方便 columnIndex = 0 # 记录行数 rowIndex = 1 # 每个完整用例子主题的个数 caseCoun
阅读全文