codecamp

GitHub 关联文本编辑器与 Git

使用文本编辑器打开文件并通过 Git 编辑。

使用 Atom 作为编辑器

  1. 安装 Atom。 更多信息请参阅 Atom 文档中的“安装 Atom”。

  1. 输入此命令:

   $ git config --global core.editor "atom --wait"

使用 Visual Studio Code 作为编辑器

  1. 安装 Visual Studio Code (VS Code)。 更多信息请参阅 VS Code 文档中的“设置 Visual Studio Code”。

  1. 打开 Git Bash。

  1. 输入此命令:

   $ git config --global core.editor "code --wait"

使用 Sublime Text 作为编辑器

  1. 安装 Sublime Text。 更多信息请参阅 Sublime Text 文档中的“安装”。

  1. 打开 Git Bash。

  1. 输入此命令:

   $ git config --global core.editor "'C:/Program Files (x86)/sublime text 3/subl.exe' -w"

使用 Notepad++ 作为编辑器

  1. https://notepad-plus-plus.org/ 安装 Notepad++。 更多信息请参阅 Notepad++ 文档中的“入门指南”。

  1. 打开 Git Bash。

  1. 输入此命令:

   $ git config --global core.editor "'C:/Program Files (x86)/Notepad++/notepad++.exe' -multiInst -notabbar -nosession -noPlugin"
GitHub Git 工作流程
GitHub 配置 Git 处理行结束符
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

GitHub 身份验证

在 GitHub 上管理订阅和通知

在 GitHub 上管理活动的订阅

GitHub 组织和团队

GitHub 管理对组织仓库的 Git 访问

GitHub 计费和付款

GitHub 使用议题和拉取请求进行协作

GitHub 在具有代码质量功能的仓库上进行协作

管理在 GitHub 上的工作

GitHub 建立强大的社区

GitHub 管理仓库

GitHub 自定义 GitHub 工作流程

在 GitHub Marketplace 中购买并安装应用程序

通过 GitHub Jobs 寻找人才

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }