1.9k2 分钟

# 一、Windows中miniconda的安装与使用 安装 官方安装指南,以此执行一下三条指令 wget "https://repo.anaconda.com/miniconda/Miniconda3-latest-Windows-x86_64.exe" -outfile ".\miniconda.exe" Start-Process -FilePath ".\miniconda.exe" -ArgumentList "/S" -Wait del .\minico
4.5k4 分钟

# Git 常用命令笔记 本笔记旨在整理 Git 的基础配置、本地与远程仓库管理、分支操作及一些实用技巧。 # 一、基础配置 # 1. 查看与设置用户信息 在首次使用 Git 前,需要配置全局的用户名和邮箱。 命令 功能说明 git config --list 查看当前的 Git 配置信息。 git config --global user.name "Your Name" 设置全局用户名。 git config --global user.email "your.email@example.com" 设置全局用户邮箱。 #