APP 偏多,记录记录申请的证书时间
2022-10-19 类型 Apple Development xr
2022-10-19 类型 Apple Distribution !xr
Id 申请记录
2020-08-18 pro.xiangrong.wallet
2021-02-01 pro.xiangrong.yuepaibao
2022-10-18 pro.xiangrong.xiaoqubao
profiles
2022-10-19 xiaoqubao/yuepaibao
2022-10-19 类型 Apple Development xr
2022-10-19 类型 Apple Distribution !xr
2020-08-18 pro.xiangrong.wallet
2021-02-01 pro.xiangrong.yuepaibao
2022-10-18 pro.xiangrong.xiaoqubao
2022-10-19 xiaoqubao/yuepaibao
美团 cps 饿了么 cps
https://blog.csdn.net/m0_56572731/article/details/115391291
git 默认的 log 时间格式不好看,设置一下,转换成中国人方便看的格式。
默认格式: Date: Wed Aug 31 01:46:33 2022 +0000
//修改当前仓库log date格式
git config log.date iso-strict-local
//全局设置log date格式
git config --global log.date iso-strict-local
# 修改之后的日历格式:
# Date: 2018-08-23T17:16:39+08:00
# 或者这样
git config --global log.date format:'%Y-%m-%d %H:%M:%S'
# Date: 2021-08-27 15:38:56
在微信直播,进行打赏的时候,需要微信豆。可是安卓机微信充值充值1元可以得10个微信豆。可苹果手机却只能得7个。也就是会少30%。为了规避这个问题,可以通过h5链接直接充值,这样可以达到充1元得10个微信豆这样的比例。那么怎么操作呢。在微信里搜索公众号:上海想容,关注并回复微信豆,就会得到充值链接。下边是操作流程,已截图出来了。







git version 2.36.0
<> 表示【需替换的项】[] 表示【非必填项】| 表示【或】git config --global user.name [<username>] 配置用户名
git config --global user.email [<email>] 配置邮箱
git config --global core.editor [<vim>] 配置编辑器
git clone <options> 克隆远程仓库
git init [project] 初始化本地项目
git add <file> 添加文件到暂存区
git commit -m <commit notes> 将暂存区的内容提交到HEAD
git commit -am <commit notes> 将add和commit合并操作
git commit --amend -m <commit notes> 将add和commit合并操作且合并到上次commit
git status 显示状态
git diff [HEAD] 显示差异
git log 显示日志
git show <commit> 显示某个commit的详细内容
git blame <file> 显示文件每行的commit信息
git restore <file> 撤回工作区的修改
git restore --staged <file> 将已提交到暂存区的修改撤回工作区
git reset [--mixed] <commit> 将当前版本撤回到某个commit,保留工作区的修改
git reset --soft <commit> 将当前版本撤回到某个commit, 保留工作区和暂存区的修改
git reset --hard <commit> 将当前版本撤回到某一个commit,不保留工作区的修改
git rm <file> 将文件从工作区和暂存区删除
git mv <file> 将文件从工作区和暂存区移动或改名
git clean -df 从工作区删除未跟踪的文件
git branch [--list] 显示所有分支
git branch -a 显示远程分支
git branch <branch> 创建分支
git branch -d|-D <branch> 删除分支
git branch -m <newbranch> 重命名当前分支
git switch <branch> 切换到已有分支
git switch -c <branch> 创建并切换分支
git merge <branch> 将某个分支合并到当前分支
git tag <tagname> 给当前分支打标签
git stash 将工作区的更改存储到脏工作目录中
git stash apply 将脏工作目录中的数据恢复到工作区(不会删除脏工作目录保存的数据)
git stash drop 将脏工作目录中的数据删除
git stash pop 将脏工作目录中的数据恢复工作区并删除脏数据
git remote [-v] 显示远程库
git remote show <origin> 显示某个远程库的信息
git remote add <origin> <url> 添加远程库链接
git remote rm <origin> 删除远程库链接
git remote rename <oldname> <newname> 重命名远程库
git pull [<origin><branch>] 拉取远程库到本地库
git push [-u <origin> <master>] 将本地库推送到远程库
git push origin --delete <branch>|git push origin :crazy-experiment 删除远程分支
git fetch 从远程库获取到本地库
git help <command> 显示某个命令的详细使用文档
git <command> -h 显示某个命令的使用说明
~~该命令职责不明确,不建议使用;~~
git checkout <file> 丢弃工作区的修改
git checkout -f 强制丢弃工作区和暂存区的修改
git checkout <branch> 切换分支
git checkout -b <branch> 创建并切换分支
https://developers.weixin.qq.com/doc/oplatform/Downloads/Android_Resource.html
在文章的末尾,下载 apk,安装到 android 手机上。启动后,输入安装到该手机上的应用的包名,点击 Get Signature 就可以获取到了。如果是错误的包名,那是获取不到的。
强迫症。不喜欢开机自启动向日葵。那么就关掉向日葵自启动吧。这里是 mac
打开终端,编辑下边这些文件,将
cd /Library/LaunchAgents/
sudo vim com.oray.sunlogin.agent.plist
sudo vim com.oray.sunlogin.startup.plist
cd /Library/LaunchDaemons
sudo vim com.oray.sunlogin.helper.plist
sudo vim com.oray.sunlogin.plist