Restore README as a usable guide for the Ethereum EIPs upload-access error#20
Restore README as a usable guide for the Ethereum EIPs upload-access error#20Copilot wants to merge 1 commit into
Conversation
Co-authored-by: Darliewithrow <216807437+Darliewithrow@users.noreply.github.com>
There was a problem hiding this comment.
Pull request overview
Restores README.md as a complete, beginner-friendly guide explaining the GitHub “Uploads are disabled” message in the context of contributing to ethereum/EIPs, and walks contributors through the correct fork-based workflow.
Changes:
- Replaces the previous one-line URL README with a full explanation of what the error means and why it occurs.
- Adds a step-by-step fork → clone → upstream remote → branch → commit → push → PR workflow.
- Adds a recovery path for users who cloned
ethereum/EIPsdirectly, plus a troubleshooting checklist and official GitHub documentation links.
|
T1TANpTeScyeqVzzgNViGDNrkQ6qHz9KrSBS4aNXvGT |
1 similar comment
|
T1TANpTeScyeqVzzgNViGDNrkQ6qHz9KrSBS4aNXvGT |
|
diff --git a/home/runner/work/master/master/README.md b/home/runner/work/master/master/README.md diff --git a/home/runner/work/master/master/CONTRIBUTING.md b/home/runner/work/master/master/CONTRIBUTING.md Contributing to This GuideThank you for helping improve this guide! This repository provides instructions for contributors who encounter the "Uploads are disabled" error when working with the Ethereum EIPs repository. How to ContributeTypes of Contributions Welcome
Making Changes
Validation ChecklistBefore submitting a pull request, please verify:
Style Guidelines
ScopeThis is a guide repository — it explains how to contribute to ethereum/EIPs, but does not accept EIP submissions itself. Please keep contributions focused on improving the guide content. Questions or Suggestions?Open an issue in this repository to discuss ideas before making large changes. For questions about contributing to the actual Ethereum EIPs repository, see the Resources section in the main guide. |
The repository’s main guide had been replaced with a single URL, leaving the documented “Uploads are disabled” problem effectively unexplained. This change restores the README as a focused guide for contributors who hit that error while trying to submit changes to
ethereum/EIPs.Problem framing
ethereum/EIPsContribution workflow
upstream, creating a branch, pushing to the fork, and opening a pull requestRecovery path
Troubleshooting and references
git clone https://github.com/YOUR-USERNAME/EIPs.git cd EIPs git remote add upstream https://github.com/ethereum/EIPs.git git checkout -b your-eip-change git push -u origin your-eip-change