Tmux核心概念 架构理解 会话(Session) → 窗口(Window) → 窗格(Pane) 会话(Session):独立的工作环境(如"数据分析任务") 窗口(Window):会话中的全屏工作区(如"数据清洗"窗口) 窗格(Pane):窗口内的分屏(如同时查看日志和运行命令) 安装Tmux # Ubuntu/Debian sudo apt install tmux # CentOS/RHEL sudo yum install tmux # MacOS brew ins…

2025年6月11日 378点热度 xxs9331 阅读全文

环境准备 git配置 git config --global user.name "Your Name" git config --global user.email "email@example.com" 验证安装 git --version 代码操作 初始化仓库 上传到github 代码推送 查看提交 git log 项目创建 远程添加 git代理 设置代理 //http || https git config --global http.proxy 127.0.0.1:7890 git config --gl…

2025年6月11日 370点热度 xxs9331 阅读全文