Tagged Questions
21
votes
4answers
5k views
Git format-patch to be svn compatible?
Is there any way to get a patch created with git format-patch to be svn compatible so that I can submit it to an svn repo?
I'm working off an svn repo on github and want to submit my changes back to ...
5
votes
1answer
95 views
How to re-format the patch after merge in Git?
Let's assume that there are two branches, master and slave, and they edit the same file and the same line. Initially, the contents of the file is
foo bar
then in the branch slave it is edited to ...
3
votes
2answers
168 views
How to email patches formatted with git format-patch?
I've got a series of patches I want to send to an open source project but I'm not able to figure out how to properly format an email. I tried running a git format-patch command then attached them all ...
3
votes
1answer
505 views
How can I make git am / git apply work “fuzzy” like the patch command
I've been using git-format-patch and git-am to apply changes from one repository to another. The file structures are the same but there are some changes in the repository I'm apply to which cause most ...
2
votes
2answers
217 views
git am/format-patch: control format of line endings
I created a patch from three commits using
git format-patch <revision_three_commits_ago>
This creates three patch files that I mailed from my notebook and read the mail on my desktop computer ...
2
votes
1answer
188 views
GIT: How to avoid duplicated commits while maintaining lots of forks?
I have a base repository with a "base site" that I clone to make my clients sites, so I work, make commits, push to the client fork, then I realize that in the middle of my commits there is one or ...
0
votes
1answer
23 views
git format-patch and ^M at EOL
I am struggling to create a patch for a file which does contain some ^M at the end of a line.
when I edit the file I don't see the ^M, but the patch created by format-patch does point it out in the ...
0
votes
4answers
182 views
format-patch works reasonably well, looking for a better way
I have two branches that are different enough that rebasing seems to not work -- or I don't know how to do it.
I have a "public" branch with a bunch of files removed (using filter-branch). Even ...