This fork is meant to always follow changes in the upstream
.
That is, there should be no changes done in this fork which would prevent drop in replacement of postman-request
with request
(and vice-versa)
-
Clone this repository
git clone https://github.com/postmanlabs/postman-request.git
-
Create another git origin, so that we can easily track upstream changes, and merge them as necessary.
git remote add upstreamrepo https://github.com/user/repo.git
-
Fetch commits from the upstream
git fetch upstreamrepo
-
Checkout a local branch from the upstream master
git checkout --track upstreamrepo/master -b upstreammaster
You can now merge in upstream changes as required,
git checkout master
git merge upstreammaster