睿虎的博客

1
2
git config --global user.name "John Doe"
git config --global user.email johndoe@example.com

设置用户名称与邮件地址

1
git config --global core.editor "'C:\Program Files\Notepad++\notepad++.exe' -multiInst -notabbar -nosession -noPlugin"

设置默认文本编辑器

1
git config --list

列出所有 Git 当时能找到的配置

1
git init

在现有目录中初始化仓库

重点

1
2
git add *.c
git add LICENSE

开始对指定文件的跟踪
或 更新文件到暂存区

Read more »

1.首先需要切换到要升级的环境下,这里我切换到mye

conda activate mye

2.然后升级python版本

conda update python

3.如果想降级,比如降级到3.8,就这样写:

conda install python=3.8

0%