blob: 9ad9333351996795ee4c165f828841031729f9ed (
plain)
1
2
3
4
5
6
7
8
9
10
|
---
layout: default
title: Textmate
description: How to use Textmate as your git editor
categories: third_party
---
Using Textmate as your git editor is fairly simple, you just need to to make sure Textmate informs git when the document is closed. You can do this by using `mate -w`:
<pre class="terminal">git config --global core.editor "mate -w"</pre>
|