NOTE
You may not need local branches for all pull requests in a repo.
To fetch only the ref of a single pull request that you need, use this:
git fetch origin pull/7324/head:pr-7324
git checkout pr-7324
# ...| import PackageDescription | |
| import Foundation | |
| import Swift | |
| extension PackageDescription.Product { | |
| public static func iOSApplication( | |
| name: Swift.String, | |
| targets: [Swift.String], | |
| bundleIdentifier: Swift.String? = nil, | |
| teamIdentifier: Swift.String? = nil, |
NOTE
You may not need local branches for all pull requests in a repo.
To fetch only the ref of a single pull request that you need, use this:
git fetch origin pull/7324/head:pr-7324
git checkout pr-7324
# ...(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.