git 命令
打包某次提交的文件
1
git archive --format=zip HEAD `git diff --name-only 8bbf69c253801228ff504ab080ce7cf44a924971 a27d045d8c60d6c62a4061b94763886577e1c0eb` > a.zip
常用命令
1
2
3
4
5
6
7
8
9
10
11
12
13
14# 拉取文件
git pull
# 查看本地变动文件
git status
# 添加文件到git版本关键(.* 表示全部,建议后面跟需要的文件)
git add .*
# 提交到本地仓库
git commit -m 'update'
# 推送文件
git push origin master使用github托管静态资源
1 | // --prefix=表示需要把那个文件夹提交到gh-pages |
通过 你的github名称.github.io/你的项目名称 可以访问你的项目
例如:https://mylovegy.github.io/gallery/
openssl 证书格式互转
p12 转 pem
1
openssl pkcs12 -in 文件名.p12 -out 输出文件.pem -nodes
cer 转 pem
1
openssl x509 -inform der -in 文件名.cer -out 输出文件名.pem