I'm using a .netrc file to steamline pushing and pulling code int a git repository. The problem is, I'm using multiple tenants on the same host, with different credentials. I was thinking about commenting out blocs in the .netrc file, depending on which tenant I'm connecting to.
Is this possible?
Thanks!
man 5 netrc
makes no mention of any comment syntax. Beyond that, you would probably have to either (a) experiment, or (b) look at the source code of the application that uses it – Allanadale