软件测试常用网站汇聚

产品文档应用场景:项目功能点参考,写操作手册参考,面试参考 小鹅通【教育 Saas】帮助中心: ​ 帮助中心-小鹅通 有赞【电商 Saas】帮助中心: ​ 采购订单和采购入库使用教程 - 帮助中心 - 有赞 神策【数据 Saas】帮助中心: ​ 产品使用指南-神策分析 帮助中心 | 数据分析使用手册 ...

Python 数据源配置

Windows: 直接在user目录中创建一个pip目录,如:C:\Users\xx\pip,新建文件pip.ini pip配置文件内容 12345678910111213[global]index-url=https://pypi.tuna.tsinghua.edu.cn/simple/extra-index-...

Hello World

Welcome to Hexo! This is your very first post. Check documentation for more info. If you get any problems when using Hexo, you can find the answer in trouble...

测试系统工程师(TSE)技术大纲

测试系统工程师(TSE)技术学习大纲及其重点关注

Git 远程仓库

远程仓库创建SSH Key1234567891011121314151617181920212223$ ssh-keygen -t rsa -C "youremail@example.com"Generating public/private rsa key pair. # 生成密钥对 En...

Git 其他操作

其他操作常用忽略文件https://github.com/seeways/MyIgnore 配置别名1git config --global alias.<name> <git-name> 建议熟悉git命令后使用 12345# 设置别名git config --global alias...

Git 日志

日志查看1git log 简化版日志1git log --pretty=oneline 查看前N条1git log -n 变更日志-n 同上,不加则显示全部 1git log --stat -n 查看提交修改查看某次commit做了哪些修改 1git show <commit-hash-id>...

Git 基础

基础Git配置12git config --global user.name "Your Name"git config --global user.email "email@example.com" git config命令的--global参数,表明这台机器上的所有G...

Git 分支

分支常用分支命令1234567891011查看分支:git branch创建分支:git branch <name>切换分支:git checkout <name>创建+切换分支:git checkout -b <name>合并某分支到当前分支:git merge <na...

Git 标签

标签tag就是一个让人容易记住的有意义的名字,它跟某个commit绑在一起。 新建一个标签1git tag <tagname> 命令git tag <tagname>用于新建一个标签,默认为HEAD,也可以指定一个commit id。 指定标签信息you can use like thi...