跳至主要內容
Git

常用命令

功能 命令
查看分支 git branch
创建分支 git branch name
切换分支 git checkout name
创建+切换分支 git checkout –b name
合并某分支到当前分支 git merge name
删除分支 git branch –d name
远程仓库下载新分支和数据 git fetch
远程仓库提取数据并尝试合并到当前分支 git merge
初始化仓库 git init
拷贝一份远程仓库 git clone
添加文件到暂存区 git add
查看仓库当前的状态,显示有变更的文件。 git status
提交暂存区到本地仓库。 git commit
回退版本。 git reset
查看历史提交记录 git log
远程仓库操作 git remote
下载远程代码并合并 git pull
上传远程代码并合并 git push

小于 1 分钟ToolsTools
Anaconda

常用命令

命令 提示
conda create -n xx python==3.6 创建一个新环境
conda remove -n xx --all 完全删除一个已经创建的环境
conda activate xx 激活使用环境
conda deactivate 退出环境
conda env list 查看当前安装的环境
conda update Anaconda 更新Anaconda最新版本
conda update -n base conda 更新conda
conda update -all
conda clean -i 清除conda的缓存
conda info 查看详细信息

小于 1 分钟ToolsTools
Vim使用记录

LazyVim

🚀 Getting Started | LazyVim 尝试过SpaceVim和LazyVim,感觉LazyVim这个预设还是比较有意思的。不过LazyVim要求有点高,需要安装版本比较高的neovim搭配使用,如果喜欢折腾,可以试试这个预设。

  • Neovim >= 0.9.0 (needs to be built with LuaJIT)
  • Nerd Font(v3.0 or greater) (optional, but needed to display some icons)

大约 1 分钟ToolsTools