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
A gitify extract strips any comments # this is a comment from .gitify. We often use some parts / partitions to comment out and use them again.
gitify extract
# this is a comment
.gitify
Comments are gone
Comments are still in the .gitify file
Gitify version 2.0.1-pl
The text was updated successfully, but these errors were encountered:
As a work-around, specifying --no-packages will avoid the file from getting rewritten, but thank you for logging this issue.
--no-packages
Sorry, something went wrong.
Also, options with multiple values are being reformatted into a single line array.
So this:
where: - 'key:NOT IN': - 'site_url' - 'base_url' - 'http_host'
Becomes:
where: - { 'key:NOT IN': [site_url, base_url, http_host] }
I didn't even know that that was possible in YAML, but it's not convenient with large arrays.
No branches or pull requests
Summary
A
gitify extract
strips any comments# this is a comment
from.gitify
.We often use some parts / partitions to comment out and use them again.
Step to reproduce
.gitify
fileObserved behavior
Comments are gone
Expected behavior
Comments are still in the
.gitify
fileEnvironment
Gitify version 2.0.1-pl
The text was updated successfully, but these errors were encountered: