Question

I have figured out how to make my own git command , but I want to be able to allow user saved settings required by my git command into git ~/.gitconfig file and later my git command read from the config file instead of having user to input each time the git command is executed.

Is there a simple way to read ~/.gitconfig file or do I have to parse read the content ?

Was it helpful?

Solution

Use git config --global. It is purpose-built for reading and writing settings to your .gitconfig.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top