Unable to source a file in Git's .gitconfig - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T12:49:07Z http://stackoverflow.com/feeds/question/890956 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/890956/unable-to-source-a-file-in-gits-gitconfig 0 Unable to source a file in Git's .gitconfig Masi 2009-05-21T00:53:12Z 2009-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#890962 5 Answer by mipadi for Unable to source a file in Git's .gitconfig mipadi 2009-05-21T00:56:08Z 2009-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 -2 Answer by Doppelganger for Unable to source a file in Git's .gitconfig Doppelganger 2009-05-21T00:58:38Z 2009-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>