Unable to source a file in Git's .gitconfig - Stack Overflow most recent 30 from stackoverflow.com2009-12-22T12:49:07Zhttp://stackoverflow.com/feeds/question/890956http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/890956/unable-to-source-a-file-in-gits-gitconfig0Unable to source a file in Git's .gitconfigMasi2009-05-21T00:53:12Z2009-05-21T00:58:38Z
<p>I put the following code to my .gitconfig unsuccessfully</p>
<pre><code>. /Users/Masi/bin/personal
</code></pre>
<p>I get the following error</p>
<pre><code>fatal: bad config file line 7 in /Users/Masi/.gitconfig
</code></pre>
<p><strong>How can you source an external file in .gitconfig?</strong></p>
http://stackoverflow.com/questions/890956/unable-to-source-a-file-in-gits-gitconfig/890962#8909625Answer by mipadi for Unable to source a file in Git's .gitconfigmipadi2009-05-21T00:56:08Z2009-05-21T00:56:08Z<p><code>.gitconfig</code> isn't a shell script, it's a list of configuration options for Git. It takes the following form:</p>
<pre><code>[section]
option = value
</code></pre>
<p>You can't "source" another file in <code>.gitconfig</code>.</p>
http://stackoverflow.com/questions/890956/unable-to-source-a-file-in-gits-gitconfig/890974#890974-2Answer by Doppelganger for Unable to source a file in Git's .gitconfigDoppelganger2009-05-21T00:58:38Z2009-05-21T00:58:38Z<p>Maybe you're looking for this:
<a href="http://www.kernel.org/pub/software/scm/git/docs/git-submodule.html" rel="nofollow">http://www.kernel.org/pub/software/scm/git/docs/git-submodule.html</a></p>