I have closed a project on github and need to create a set of changes made by me since I'm made in forf format.
If you are wondering - I have used Apache httpd and I am changing some code in the core. I am currently not reducing any change, I am running GIT difference, and I am using its output as a patch against vanilla httpd sources in an RPM creation process. This is definitely wrong, but I do not know how to do it properly. I know that I need a difference at the end.
- Add original geethb repo as a remote in your local repo).
-
git fetch mainRepo to get the latest changes from "Rio" Code> .
git logs HEAD..MainRepo / master
will show you all your changes between the main Repo Master branch and your current branch.git diff HEAD..mainRepo / master
will display
in:
Git diff mainRepo / master ... head
all listed will be listed after you mainRepo
:
These changes will not compare the final 'master' branch snapshot and the last 'dev' snapshot - instead compare it to the common ancestor 'god with both. It will tell you what has changed since the branch point.
Comments
Post a Comment