vote up 0 vote down star

I put the following code to my .gitconfig unsuccessfully

. /Users/Masi/bin/personal

I get the following error

fatal: bad config file line 7 in /Users/Masi/.gitconfig

How can you source an external file in .gitconfig?

flag

2 Answers

vote up 5 vote down check

.gitconfig isn't a shell script, it's a list of configuration options for Git. It takes the following form:

[section]
        option = value

You can't "source" another file in .gitconfig.

link|flag
Thank you for your answer! – Masi May 21 at 12:01
vote up -2 vote down

Maybe you're looking for this: http://www.kernel.org/pub/software/scm/git/docs/git-submodule.html

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.