* Splitting code between files and then merging
@ 2008-04-15 1:22 nathan bullock
0 siblings, 0 replies; only message in thread
From: nathan bullock @ 2008-04-15 1:22 UTC (permalink / raw)
To: git
I have been playing around with various merge situations and things
don't seem to be working quite as I expected.
If I have a repository with a file such as:
### file abc ###
void
foo(){
int x;
func(x);
}
void
moo(){
int y;
func(y);
}
And then clone that repo and in my clone I edit things so that I have two files:
### file abc ###
void
foo(){
int x;
func(x);
}
### file bcd ###
void
moo(){
int y;
func(y);
}
I commit this.
Then I do a git blame -C -C6 bcd
(If I make these functions larger I can get away with just a single -C)
It seems to be able to determine that all of the lines in both files
originated from the file abc.
Now the problem is that if I make a change to the function moo in the
file abc in the original repo and the try to pull it into the second
repo I always get merge conflicts. Is this expected? Do any of the
various merge algorithms in git handle these situations?
Nathan Bullock
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2008-04-15 1:24 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-04-15 1:22 Splitting code between files and then merging nathan bullock
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).