(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.
(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.
| {-# START_FILE package.yaml #-} | |
| spec-version: 0.31.0 | |
| name: {{name}} | |
| version: 0.1.0.0 | |
| # synopsis: | |
| # description: | |
| category: {{category}}{{^category}}Web{{/category}} | |
| homepage: https://github.com/{{github-username}}{{^github-username}}githubuser{{/github-username}}/{{name}}#readme | |
| bug-reports: https://github.com/{{github-username}}{{^github-username}}githubuser{{/github-username}}/{{name}}/issues | |
| author: {{author-name}}{{^author-name}}Author name here{{/author-name}} |
| # First, you must get the previous commit sha, the one before the forced push: | |
| ## Hit through terminal | |
| curl -u <username> https://api.github.com/repos/:owner/:repo/events | |
| # Then you can create a branch from this sha: | |
| ## Hit through terminal | |
| curl -u <github-username> -X POST -d '{"ref":"refs/heads/<new-branch-name>", "sha":"<sha-from-step-1>"}' https://api.github.com/repos/:owner/:repo/git/refs |