We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
my ini file content
[gitflow "branch.feature/PLANO-34129"] base = master
gets parsed to
{ 'gitflow "branch': { 'feature/PLANO-34129"': { 'base': 'master' } } }
Note the missing " in the keys.
const ini = require('ini') const fs = require('fs') var config = ini.parse(fs.readFileSync('.gitconfig', 'utf-8')) console.log(JSON.stringify(team_config));
Something like this:
{ 'gitflow': { 'branch': { 'feature/PLANO-34129': { 'base': 'master' } } } }
The text was updated successfully, but these errors were encountered:
.git/config
Actually, it's a problem with dots, not double quotes.
Duplicate of #22
Sorry, something went wrong.
No branches or pull requests
What / Why
my ini file content
gets parsed to
Note the missing " in the keys.
How
Steps to Reproduce
.gitconfig
reproduce.js
Expected Behavior
Something like this:
The text was updated successfully, but these errors were encountered: