1
0
mirror of synced 2025-12-23 21:07:12 -05:00
Files
docs/content/get-started/getting-started-with-git/associating-text-editors-with-git.md
Octomerger Bot 7b142730bf repo sync (#21842)
* Mention dependency files update for Gradle

* Adding more specific caveats of apply support.

Co-authored-by: Mike McDonald <2575327+asciimike@users.noreply.github.com>

* Adding ip_allow_list entries

I've added the ip_allow_list and ip_allow_list_entry category actions

* Update backing-up-a-repository.md

Add Azure Blob Storage as potential backup or storage service to have more options and especially also call out a non-consumer service with SLAs.

* Add missing "Open Git Bash" step

* Update data/reusables/dependabot/supported-package-managers.md

* Update about-linked-identities.md

* Update viewing-and-managing-a-members-saml-access-to-your-organization.md

* Update viewing-and-managing-a-users-saml-access-to-your-enterprise.md

* Fix workflow command for toolkit function (#10249)

* fixed typographical errors

* Update CONTRIBUTING.md

* Fixed typographical errors

* Apply suggestions from code review

* Add 💅

* Move mention of SCIM

* Add newline

* Add Further Reading Links

Fixes github#9906

* Fix link

* Add Further Reading Links

Fixes github#9906

* 🔀 linking

Fixes github#9906

* 🔀 linking

* 🔀 linking

* Added further reading section

* Update content/organizations/keeping-your-organization-secure/reviewing-the-audit-log-for-your-organization.md

Co-authored-by: Ethan Palm <56270045+ethanpalm@users.noreply.github.com>

* Update content/organizations/keeping-your-organization-secure/reviewing-the-audit-log-for-your-organization.md

Co-authored-by: Ethan Palm <56270045+ethanpalm@users.noreply.github.com>

* Update content/organizations/keeping-your-organization-secure/reviewing-the-audit-log-for-your-organization.md

* Apply suggestions from code review

* Update device flow OAuth app responses (#10426)

Co-authored-by: Zbynek Konecny <zbynek1729@gmail.com>
Co-authored-by: Mike McDonald <2575327+asciimike@users.noreply.github.com>
Co-authored-by: Jonathan Cardona <Hollywood@github.com>
Co-authored-by: Gerwald Oberleitner <gerwaldo@users.noreply.github.com>
Co-authored-by: Rob Cowsill <42620235+rcowsill@users.noreply.github.com>
Co-authored-by: Ethan Palm <56270045+ethanpalm@users.noreply.github.com>
Co-authored-by: Andre Kolodochka <59625655+andrekolodochka@users.noreply.github.com>
Co-authored-by: Lee Dohm <1038121+lee-dohm@users.noreply.github.com>
Co-authored-by: Abshar Mohammed Aslam <Absharaslam2001@gmail.com>
Co-authored-by: Lulu <oluchi@lulunwenyi.com>
Co-authored-by: Oluchi Nwenyi <dev@lulunwenyi.com>
Co-authored-by: Ramya Parimi <ramyaparimi@github.com>
Co-authored-by: James M. Greene <JamesMGreene@github.com>
Co-authored-by: mc <42146119+mchammer01@users.noreply.github.com>
Co-authored-by: Laura Coursen <lecoursen@github.com>
Co-authored-by: PSJ <51746608+thispsj@users.noreply.github.com>
Co-authored-by: Janice <janiceilene@github.com>
Co-authored-by: Lucas Costi <lucascosti@users.noreply.github.com>
2021-10-04 23:32:57 -05:00

5.0 KiB

title, intro, redirect_from, versions, shortTitle
title intro redirect_from versions shortTitle
Associating text editors with Git Use a text editor to open and edit your files with Git.
/textmate/
/articles/using-textmate-as-your-default-editor/
/articles/using-sublime-text-2-as-your-default-editor/
/articles/associating-text-editors-with-git
/github/using-git/associating-text-editors-with-git
/github/getting-started-with-github/associating-text-editors-with-git
/github/getting-started-with-github/getting-started-with-git/associating-text-editors-with-git
fpt ghes ghae
* * *
Associate text editors

{% mac %}

Using Atom as your editor

  1. Install Atom. For more information, see "Installing Atom" in the Atom documentation. {% data reusables.command_line.open_the_multi_os_terminal %}
  2. Type this command:
$ git config --global core.editor "atom --wait"

Using Visual Studio Code as your editor

  1. Install Visual Studio Code (VS Code). For more information, see "Setting up Visual Studio Code" in the VS Code documentation. {% data reusables.command_line.open_the_multi_os_terminal %}
  2. Type this command:
$ git config --global core.editor "code --wait"

Using Sublime Text as your editor

  1. Install Sublime Text. For more information, see "Installation" in the Sublime Text documentation. {% data reusables.command_line.open_the_multi_os_terminal %}
  2. Type this command:
$ git config --global core.editor "subl -n -w"

Using TextMate as your editor

  1. Install TextMate.
  2. Install TextMate's mate shell utility. For more information, see "mate and rmate" in the TextMate documentation. {% data reusables.command_line.open_the_multi_os_terminal %}
  3. Type this command:
$ git config --global core.editor "mate -w"

{% endmac %}

{% windows %}

Using Atom as your editor

  1. Install Atom. For more information, see "Installing Atom" in the Atom documentation. {% data reusables.command_line.open_the_multi_os_terminal %}
  2. Type this command:
$ git config --global core.editor "atom --wait"

Using Visual Studio Code as your editor

  1. Install Visual Studio Code (VS Code). For more information, see "Setting up Visual Studio Code" in the VS Code documentation. {% data reusables.command_line.open_the_multi_os_terminal %}
  2. Type this command:
$ git config --global core.editor "code --wait"

Using Sublime Text as your editor

  1. Install Sublime Text. For more information, see "Installation" in the Sublime Text documentation. {% data reusables.command_line.open_the_multi_os_terminal %}
  2. Type this command:
$ git config --global core.editor "'C:/Program Files (x86)/sublime text 3/subl.exe' -w"

Using Notepad++ as your editor

  1. Install Notepad++ from https://notepad-plus-plus.org/. For more information, see "Getting started" in the Notepad++ documentation. {% data reusables.command_line.open_the_multi_os_terminal %}
  2. Type this command:
$ git config --global core.editor "'C:/Program Files (x86)/Notepad++/notepad++.exe' -multiInst -notabbar -nosession -noPlugin"

{% endwindows %}

{% linux %}

Using Atom as your editor

  1. Install Atom. For more information, see "Installing Atom" in the Atom documentation. {% data reusables.command_line.open_the_multi_os_terminal %}
  2. Type this command:
$ git config --global core.editor "atom --wait"

Using Visual Studio Code as your editor

  1. Install Visual Studio Code (VS Code). For more information, see "Setting up Visual Studio Code" in the VS Code documentation. {% data reusables.command_line.open_the_multi_os_terminal %}
  2. Type this command:
$ git config --global core.editor "code --wait"

Using Sublime Text as your editor

  1. Install Sublime Text. For more information, see "Installation" in the Sublime Text documentation. {% data reusables.command_line.open_the_multi_os_terminal %}
  2. Type this command:
$ git config --global core.editor "subl -n -w"

{% endlinux %}