Skip to content
GitLab
Projects Groups Snippets
  • /
  • Help
    • Help
    • Support
    • Community forum
    • Submit feedback
    • Contribute to GitLab
  • Sign in / Register
  • O openapi-generator
  • Project information
    • Project information
    • Activity
    • Labels
    • Members
  • Repository
    • Repository
    • Files
    • Commits
    • Branches
    • Tags
    • Contributors
    • Graph
    • Compare
  • Issues 3,476
    • Issues 3,476
    • List
    • Boards
    • Service Desk
    • Milestones
  • Merge requests 402
    • Merge requests 402
  • CI/CD
    • CI/CD
    • Pipelines
    • Jobs
    • Schedules
  • Deployments
    • Deployments
    • Environments
    • Releases
  • Packages and registries
    • Packages and registries
    • Package Registry
    • Infrastructure Registry
  • Monitor
    • Monitor
    • Incidents
  • Analytics
    • Analytics
    • Value stream
    • CI/CD
    • Repository
  • Wiki
    • Wiki
  • Snippets
    • Snippets
  • Activity
  • Graph
  • Create a new issue
  • Jobs
  • Commits
  • Issue Boards
Collapse sidebar
  • OpenAPI Tools
  • openapi-generator
  • Wiki
  • FAQ

FAQ · Changes

Page history
add instruction to file a PR against branch authored Jul 24, 2019 by William Cheng's avatar William Cheng
Show whitespace changes
Inline Side-by-side
FAQ.md
View page @ c5acdb13
...@@ -145,6 +145,23 @@ Visit https://github.com/openapitools/openapi-generator and then click on the "F ...@@ -145,6 +145,23 @@ Visit https://github.com/openapitools/openapi-generator and then click on the "F
6) git push origin fix_issue9999 6) git push origin fix_issue9999
7) Visit https://github.com/openapitools/openapi-generator in your browser and click on the button to file a new PR based on fix_issue9999 7) Visit https://github.com/openapitools/openapi-generator in your browser and click on the button to file a new PR based on fix_issue9999
### How can I submit a PR for a branch (e.g. 4.2.x)?
Visit https://github.com/openapitools/openapi-generator and then click on the "Fork" button in the upper right corner. Then in your local machine, run the following (assuming your github ID is "your_user_id")
1) git clone https://github.com/your_user_id/openapi-generator.git
2) cd openapi-generator
3) git remote add upstream https://github.com/openapitools/openapi-generator
3) git checkout 4.2.x
4) git pull usptream 4.2.x (ensure it has the latest change)
5) git log (review the latest change to this branch)
6) git checkout -b 4.2.x-enhance (create a new branch instead of modifying 4.2.x directly)
7) make changes
8) git commit -a (you may need to use `git add filename` to add new files)
9) git push origin 4.2.x-enhance
10) Visit https://github.com/openapitools/openapi-generator in your browser and click on the button to file a new PR based on 4.2.x-enhance. Make sure the PR is filed against "4.2.x" branch instead of master.
11) After the branch is merged, repeat step 3 & 4
## Java ## Java
### Using Java API client to make request results in SSL errors due to an invalid certificate. Is there a way to bypass that? ### Using Java API client to make request results in SSL errors due to an invalid certificate. Is there a way to bypass that?
......
Clone repository
  • API client generator HOWTO
  • Building your own Templates
  • Customizing client code generation
  • FAQ
  • Git Branches
  • Home
  • How to add a generator for a new language or framework
  • Integration Tests
  • Migration Guide
  • Mustache Template Variables
  • Pull Request Checklist
  • Release Checklist
  • Samples folder
  • Server stub generator HOWTO
  • Vendor Extensions
View All Pages