blob: ae9de76cb4c861d71e1f20fc1938d04b10d3db1c (
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: mac
---
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>
|