| Jan | FEB | Mar |
| 09 | ||
| 2015 | 2016 | 2017 |
COLLECTED BY
The seed for this crawl was a list of every host in the Wayback Machine
This crawl was run at a level 1 (URLs including their embeds, plus the URLs of all outbound links including their embeds)
The WARC files associated with this crawl are not currently available to the general public.
In the "Pull Requests" list, click the pull request you'd like to merge.
(三)At the bottom of the pull request, click command line. Follow the sequence of steps to bring down the proposed pull request.
In the "Pull Requests" list, click the pull request you'd like to merge.
(三)Find the ID number of the inactive pull request. This is the sequence of digits right after the pull request's title.
Open Terminal (for Mac and Linux users) or the command prompt (for Windows users).
Fetch the reference to the pull request based on its ID number, creating a new branch in the process.
git fetch origin pull/ID/head:BRANCHNAME
Switch to the new branch that's based on this pull request:
[master] $ git checkout BRANCHNAME
Switched to a new branch 'BRANCHNAME'
At this point, you can do anything you want with this branch. You can run some local tests, or merge other branches into it, including master. Make modifications as you see fit!
When you're ready, you can push the new branch up:
[pull-inactive-pull-request] $ git push origin BRANCHNAME Counting objects: 32, done. Delta compression using up to 8 threads. Compressing objects: 100% (26/26), done. Writing objects: 100% (29/29), 74.94 KiB | 0 bytes/s, done. Total 29 (delta 8), reused 0 (delta 0) To https://github.com/username/repository.git * [new branch] BRANCHNAME -> BRANCHNAMECreate a new pull request with your new branch.
refs/pull/ namespace is read-only. If you try to push any commits there, you'll see this error:
! [remote rejected] HEAD -> refs/pull/1/head (deny updating a hidden ref) error: failed to push some refs to 'git@github.local:USERNAME/REPOSITORY.git'When you remove or rename a remote reference, your local
refs/pull/origin/ namespace will not be affected by calls to git-remote.
●
Contact a human