Hi,
Thank you for this plugin is very useful for me. But currently, I have an issue related with the package.xml generated. It does not include the tag
I am running this command for getting the package, it works but doesn't include apex class.
sfdx sgd:source:delta --to "origin/devCol" --from $CI_COMMIT_SHA --output .

Hi @dianaerb! Thank you for using SGD, and thank you for taking the time to log your issue!
My understanding of your situation is that your latest commit is in the $CI_COMMIT_SHA variable, and that the reference branch (against which the diff is to be performed) is origin/devCol.
Is that correct?
In that situation, you would have to use $CI_COMMIT_SHA as the --to, and the origin/devCol as the --from.
This means that a working command in your situation should probably look like this:
sfdx sgd:source:delta --to $CI_COMMIT_SHA --from "origin/devCol" --output .
Could you give it a try and let us know how it goes?
Thank you!
Thank you very much to answer my message @mehdisfdc. You are right. I tested it and worked fine.
Best regards!