Native Git in Postman
Native Git brings a Git-native workflow to Postman: your collections, environments, and specs live as files in your repo, versioned right alongside your code, so a single pull request carries both code and API changes — and teammates review your work in Local View before it's published to the read-only Cloud View that consumers use. This hands-on intro stays entirely local: you'll fork and run the small Deskly API, build a collection against it in Local View, then push that collection to GitHub straight from Postman's built-in terminal.
OpenAPI Specs with Native Git
You already versioned a Deskly API collection as YAML in your deskly-api fork. In this module you'll turn that collection into an OpenAPI specification in Local View, keep the spec and collection linked, and push the spec to GitHub on a feature branch.
Coded Mocks with Native Git
You already versioned a Deskly collection and OpenAPI spec as a producer. This module flips you to the consumer hat: add a coded mock under postman/mocks/ as a lightweight stand-in for Deskly, run it locally and in CI with the Postman CLI, and keep shipping without npm start for the Express app.