<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>meeveo.com &#187; TextMate</title>
	<atom:link href="http://www.meeveo.com/tag/textmate/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.meeveo.com</link>
	<description></description>
	<lastBuildDate>Wed, 01 Feb 2012 14:08:14 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Textmate und git auf dem Mac</title>
		<link>http://www.meeveo.com/2009/01/textmate-und-git-auf-dem-mac/</link>
		<comments>http://www.meeveo.com/2009/01/textmate-und-git-auf-dem-mac/#comments</comments>
		<pubDate>Thu, 22 Jan 2009 21:13:32 +0000</pubDate>
		<dc:creator>Christian Müller</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[git]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[TextMate]]></category>

		<guid isPermaLink="false">http://www.meeveo.com/?p=319</guid>
		<description><![CDATA[Textmate ist ein wirklich netter leichter Editor zum entwickeln und &#8220;git&#8221; ein modernes Versionsverwaltungssystem. Beides zusammen ist ein super Gespann für die Webentwicklung. Hier eine kleine Beschreibung wie man &#8220;git&#8221; in Textmate integriert. 1. TextMate installieren 2. git mittels MacPorts installieren sudo port install git-core 3. git Benutzereinstellungen konfigurieren git config --global user.name "Mein Name" [...]]]></description>
			<content:encoded><![CDATA[<p><a title="Link: Website Macromates" href="http://macromates.com/" target="_blank">Textmate</a> ist ein wirklich netter leichter Editor zum entwickeln und &#8220;git&#8221; ein modernes Versionsverwaltungssystem. Beides zusammen ist ein super Gespann für die Webentwicklung. Hier eine kleine Beschreibung wie man &#8220;git&#8221; in Textmate integriert.<span id="more-319"></span></p>
<p>1. TextMate installieren</p>
<p>2. git mittels MacPorts installieren</p>
<blockquote><p><code>sudo port install git-core</code></p></blockquote>
<p>3. git Benutzereinstellungen konfigurieren</p>
<blockquote><p><code>git config --global user.name "Mein Name"<br />
git config --global user.email "Meine EMail"</code></p></blockquote>
<p>4. git Farben einstellen</p>
<blockquote><p><code>git config --global color.diff auto<br />
git config --global color.status auto<br />
git config --global color.branch auto<br />
git config --global color.interactive auto</code></p></blockquote>
<p>5. git Exclude Dateien einstellen</p>
<blockquote><p><code>git config --global core.excludesfile ~/.gitignore<br />
echo "*~" &gt;~/.gitignore<br />
echo ".DS_Store" &gt;&gt;~/.gitignore</code></p></blockquote>
<p>6. Einstellen der git Gui &#8220;gitk&#8221;</p>
<blockquote><p><code>cat &gt;~/.gitk &lt;&lt;\EOF<br />
set mainfont {Monaco 10}<br />
set textfont {Monaco 10}<br />
set uifont {Monaco 10}<br />
EOF</code></p></blockquote>
<p>7. git Aliase für einfache Benutzung einrichten</p>
<blockquote><p><code>git config --global alias.st status<br />
git config --global alias.ci commit<br />
git config --global alias.co checkout<br />
git config --global alias.br branch</code></p></blockquote>
<p>8. git mergetool für Apple opendiff konfigurieren</p>
<blockquote><p><code>git config --global merge.tool opendiff<br />
git config --global merge.summary true</code></p></blockquote>
<p>9. git TextMate Bundle installieren</p>
<blockquote><p><code>mkdir -p /Library/Application\ Support/TextMate/Bundles<br />
cd !$<br />
git clone git://gitorious.org/git-tmbundle/mainline.git Git.tmbundle<br />
osascript -e 'tell app "TextMate" to reload bundles'</code></p></blockquote>
<p>In den TextMate Shell Variablen Einstellungen jetzt noch die Variable &#8220;TM_GIT&#8221; mit dem Wert &#8220;/usr/local/bin/git&#8221; erstellen und nun sollte &#8220;git&#8221; und TextMate prima zusammenarbeiten und man kann loslegen.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.meeveo.com/2009/01/textmate-und-git-auf-dem-mac/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

