首页
关于
Search
1
git lg彩色显示日志
28 阅读
2
在 Ubuntu 22.04 LTS 中安装 Docker
19 阅读
3
CentOs/Ubuntu搭建上网x-ui
18 阅读
4
git使用多个源和多个分支
15 阅读
5
清理Windows臃肿程序
15 阅读
默认分类
网站搭建
Windows
Linux
Docker
OpenWrt
Hackintosh
Git
Python
Web开发
JavaScript
FFmpeg
Demo
工具
刷机
油猴脚本
Excel
Chrome Extension
登录
Search
标签搜索
Pandas
读取
时区
Chrome
centos8
求和
Nginx
Typecho
404
csv
国际站
询盘导出
油猴脚本
bbr
Ubuntu
远程桌面
日志
log
数据清洗
打印机
野生程序猿
累计撰写
153
篇文章
累计收到
0
条评论
首页
栏目
默认分类
网站搭建
Windows
Linux
Docker
OpenWrt
Hackintosh
Git
Python
Web开发
JavaScript
FFmpeg
Demo
工具
刷机
油猴脚本
Excel
Chrome Extension
页面
关于
搜索到
36
篇与
的结果
2023-04-24
git如何在pull的时候更新子模块
在使用 git pull 命令时,如果你的 Git 仓库中包含子模块,你需要使用 --recurse-submodules 或 --recurse-submodules=on-demand 选项来更新子模块。--recurse-submodules 选项将会递归更新所有子模块,而 --recurse-submodules=on-demand 选项只会在必要时才更新子模块。使用 --recurse-submodules 选项的命令如下:git pull --recurse-submodules使用 --recurse-submodules=on-demand 选项的命令如下:git pull --recurse-submodules=on-demand你也可以在 git config 中设置 submodule.recurse 选项为 true,这样在每次 git pull 时都会自动更新子模块。git config submodule.recurse true如果你只想更新子模块而不更新主仓库,可以使用 git submodule update 命令。git submodule update
2023年04月24日
2 阅读
0 评论
0 点赞
2023-04-05
WebRTC泄漏真实IP
WebRTC会泄露你的真实IP如果通过浏览器插件switchOmega 将浏览器的代理配置为clash监听的socks5,能防止WebRTC泄露吗?答案是并不可以.虽然socks5支持代理UDP 插件中配置的也确实是socks5代理 但是 浏览器不支持将UDP流量交给socks5代理 Chrome Firefox Edge Safari这些主流的浏览器都不支持,但使用插件禁用浏览器的WebRTC功能开启了Tun模式 stun的数据 会被路由到clash的虚拟网卡, 选择代理这条UDP请求,于是使用你配置的节点信息 将数据加密 检测WebRTC的网站: https://browserleaks.com/webrtc
2023年04月05日
4 阅读
0 评论
0 点赞
2023-04-04
阿里云邮箱配置
网页版登录地址协议服务器地址服务器端口号(常规)服务器端口号(加密)POP3pop.qiye.aliyun.com110995IMAPimap.qiye.aliyun.com143993SMTPsmtp.qiye.aliyun.com25465
2023年04月04日
2 阅读
0 评论
0 点赞
2022-11-23
Git初始化命令
简易的命令行入门教程:Git 全局设置:git config --global user.name "xxxx" git config --global user.email "
[email protected]
"创建 git 仓库:mkdir 111 cd 111 git init touch README.md git add README.md git commit -m "first commit" git remote add origin https://gitee.com/xxxx/xxx.git git push -u origin "master"已有仓库?cd existing_git_repo git remote add origin https://gitee.com/xxxx/xxx.git git push -u origin "master"
2022年11月23日
2 阅读
0 评论
0 点赞
2022-09-30
git lg彩色显示日志
git lggit config --global alias.lg "log --color --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit"
2022年09月30日
28 阅读
0 评论
0 点赞
1
2
3
4
...
8