-
-
Notifications
You must be signed in to change notification settings - Fork 27
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add missing documentation on how to apply changes from one file to another in GitHub #425
Comments
This comment was marked as outdated.
This comment was marked as outdated.
This comment was marked as resolved.
This comment was marked as resolved.
This comment was marked as duplicate.
This comment was marked as duplicate.
OverviewWe need to add a description of how to apply changes from one GitHub file to another, so that developers can synchronize changes and keep files up-to-date. Action Items
Resources/Instructions/Tags1.01 git, diff, patch, moved content Documentation Addition NotesWhat's missing?Here's how to apply changes from one GitHub file to another:
git reset upstream/main -- CONTRIBUTING.md
git switch our-branch-original
git format-patch hackforla/main CONTRIBUTING.md
# only changes to CONTRIBUTING.md
# include changes since we branched off from hackforla/main
# may need to create a temporary branch where hackforla/main used to be for this command
# output:
# 0001-add-to-dev-environment.patch
git switch our-branch-rebased
patch -p1 docs/contributing/dev_environment.md 0001-add-to-dev-environment.patch Where should it go?[REPLACE WITH URL OR INDICATE NEW PAGE AND PARENT PAGE] When would this information have been useful?
Which roles will benefit most from this information?
|
Dependency
Overview
We need to make it easy to:
This issue is the place to record missing documentation and start creating related new issues.
Details
see the following issues instead
Action Items
feature: docs: PD team documentation
size: 0.25pt
s: PD team
ready for dev lead
Section 2: List of comments/issues about missing documentation on how to apply changes across files in GitHub
The text was updated successfully, but these errors were encountered: