Merging patches (moved)

From OpenHatch wiki
Revision as of 05:36, 18 October 2010 by 209.6.39.9 (talk) (Created page with ''''Objective''': Someone gives you a patch to OpenHatch. What now? == Step 0: Fetch the patch file and get the latest code from "origin" == wget http://openhatch.org/bugs/file…')
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Objective: Someone gives you a patch to OpenHatch. What now?

Step 0: Fetch the patch file and get the latest code from "origin"

wget http://openhatch.org/bugs/file33/whatever
git fetch

Step 1: Create a new local topic branch, based on origin/master

git checkout origin/master -b new_topic_branch

Step 2: Apply said file

git am < file_created_by_wget.patch

Step 3: Make sure it worked

If it did work, you will have some commits on top of origin/master:

git log --decorate

Conclusion

That's all you need to do, in order to apply a patch. You might want to now test the patch, or provide feedback to the submitter.