随笔分类 - 编辑器[Editor]
解决Git报错: fatal: remote origin already exists.
摘要:原因 这个错误的意思是: 远程仓库已经存在, 也就是说: 之前已经add了一个origin, 删除(取消选用)之前已add的那个仓库就可以解决这个问题了。 解决方法 删除已经选用的远程仓库 git remote rm origin 然后再次上传, 成功 git remote add origin h
解决Git问题: Please tell me who you are
摘要:问题原因 git没有进行初始化配置 问题和解决 git commit: Please tell me who you are 检查输出,当中是否含有以下信息: git config –global user.email "you@example.com" git config –global use
解决git报错: error: failed to push some refs to....
摘要:原因 远程仓库和本地仓库不一致 解决方案 报错类似如: error: failed to push some refs to ‘https://github.com/' 原因: 远程仓库与本地仓库内容不一致. 尝试远程仓库同步到本地, 如果失败直接强制刷掉远程仓库的内容. 远程仓库同步到本地仓库(如
PyCharm更换第三方包源
摘要:设置PyCharm File → Settings 进入设置 国内源 清华源 https://pypi.tuna.tsinghua.edu.cn/simple 阿里源 http://mirrors.aliyun.com/pypi/simple/
NeoVim 快速配置
摘要:NeoVim配置 gitee https://gitee.com/eeqc/neo-vim_configureation 克隆配置文件 git clone https://gitee.com/eeqc/neo-vim_configureation.git ~/.config/nvim/ 插件管理器
git同步远程仓库的标准步骤
摘要:源代码推送 添加到本地仓库 git init git add . git commit -m "Notes" 推送到远程仓库 git remote add origin https://github.com/ieeqc... git push -u origin master warning: LF
Linux系统安装git
摘要:Gentoo Linux Emerge sudo emerge --ask --verbose git Arch Linux yay yay -S git 配置Git 安装完成后, 还需要最后一步设置, 在命令行输入: git config --global user.name "Your Name
Emacs org批量生成HTML手册
摘要:效果展示: 我们花时间去考虑使用org生成HTML形成的静态网页到底长什么样子: 如上图, 看上去是一个干干净净的界面, 有列表内容, 标题, 图片等等. 但它的强大远远不止于此, 它还可以套入MathJax来完美的渲染数学公式. 如果用它用于整理笔记, 无疑这是一个轻便, 简洁并且十分强大的笔记软
Git常用命令使用
摘要:常用基本命令 配置命令 Git 安装后需要先配置, 主要先配置用户邮箱与用户名 # 配置用户邮箱 git config --global user.email "你的邮箱@xxx.com" # 配置用户名 git config --global user.name "jing6a70" 查看状态命令