Hi, http://sip-router.org/wiki/git/quick-start-guide page mixes some git config global options with repository specific options:
git config --global merge.log true git config branch.master.rebase true
--global means that such option is added to $HOME/.gitconfig. If not present, then option is added to .git/config into current repository.
Perhaps this should be clarified and improved? Cheers.
Hello,
On 2/22/11 11:09 PM, Iñaki Baz Castillo wrote:
Hi, http://sip-router.org/wiki/git/quick-start-guide page mixes some git config global options with repository specific options:
git config --global merge.log true git config branch.master.rebase true
--global means that such option is added to $HOME/.gitconfig. If not present, then option is added to .git/config into current repository.
Perhaps this should be clarified and improved?
feel free to add to the wiki. Advanced GIT is still something were at least I need some "training", but is nice otherwise.
Cheers, Daniel
2011/2/23 Daniel-Constantin Mierla miconda@gmail.com:
Perhaps this should be clarified and improved?
feel free to add to the wiki. Advanced GIT is still something were at least I need some "training", but is nice otherwise.
I've added this information to the wiki:
https://sip-router.org/wiki/git/quick-start-guide#local_git_settingsglobal_a...