Git常用命令
Git命令基础使用指南Git是一种流行的分布式版本控制系统,它允许多个开发者协作开发和管理代码。这里介绍一些关键的Git命令及其基础使用方法,方便今后的记录与使用。 如何安装Git?安装Git?,略…… Git基本配置Git配置用户及邮箱,作用是在一脚commit时候标注是谁提交的。 12git config --global user.name "Your Name"git config --global user.email "your.email@example.com" Git命令详解初始化仓库:git init初始化一个新的Git仓库,会在当前目录生成一个.git文件。 1git init 克隆仓库:git clone克隆一个已有的远程仓库到本地。 1git clone https://github.com/username/repository.git git stash用于临时保存当前的工作目录中的修改,常用于切换分支。 将更改保存到临时区,默认为将所有更改保存,如果需要单独文件,可在在后接文件名。123git stash ...
测试文档
参考:
博客框架的选择
待…… 参考:
VPS脚本
VPS相关脚本工具合集 基础工具1wget -O box.sh https://raw.githubusercontent.com/BlueSkyXN/SKY-BOX/main/box.sh && chmod +x box.sh && clear && ./box.sh 科技lion工具集1curl -sS -O https://kejilion.pro/kejilion.sh && chmod +x kejilion.sh && ./kejilion.sh 回程检测 简单版1wget --no-check-certificate https://tutu.ovh/bash/returnroute/route && chmod +x route && clear && ./route 解锁测试ChatGPT检测脚本1bash <(curl -Ls https://raw.githubusercontent.com/missuo/OpenAI-C...
