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
Every time we merge a change to the generator the automation runs and re-generates code in the azure-sdk-for-net repo.
Example PR: Azure/azure-sdk-for-net#12692
Sometimes code is ready to merge as is but sometimes it needs a few adjustments to get building.
Examples:
To make changes to the automated branch:
Do this once:
git remote add azure-sdk git@github.com:azure-sdk/azure-sdk-for-net.git git fetch azure-sdk git checkout -b auto-update-autorest --track azure-sdk/auto-update-autorest
Do this for every new PR:
git fetch azure-sdk git checkout -B auto-update-autorest --track azure-sdk/auto-update-autorest <... make changes ...> git add . git commit -m "..." git push
This would update the PR with existing changes.
NOTE: Keep in mind that every merged generator change would REWRITE the branch discarding manual changes so we might need to be strategic about it.
The text was updated successfully, but these errors were encountered:
ShivangiReja
No branches or pull requests
Every time we merge a change to the generator the automation runs and re-generates code in the azure-sdk-for-net repo.
Example PR: Azure/azure-sdk-for-net#12692
Sometimes code is ready to merge as is but sometimes it needs a few adjustments to get building.
Examples:
To make changes to the automated branch:
Do this once:
Do this for every new PR:
This would update the PR with existing changes.
NOTE: Keep in mind that every merged generator change would REWRITE the branch discarding manual changes so we might need to be strategic about it.
The text was updated successfully, but these errors were encountered: