source

Can I comment out a line in a .git/config file?

ittop 2023. 6. 26. 23:11
반응형

Can I comment out a line in a .git/config file?

I have a http.proxy line on my repository configuration file that I would like to 'turn on and off' easily without having to remember and type again the whole configuration every time I'm behind or free from this proxied connection.

Another possibility would be to use this repository configuration file when I'm behind the proxy and when not, use a global/local configuration file without any proxy setup.

Yes, you can comment lines out of Git config files using # or ;.

From the documentation:

Syntax

The syntax is fairly flexible and permissive; whitespaces are mostly ignored. The # and ; characters begin comments to the end of line, blank lines are ignored.

ReferenceURL : https://stackoverflow.com/questions/21297970/can-i-comment-out-a-line-in-a-git-config-file

반응형