* git pull -s subtree doesn't work properly @ 2009-11-05 18:09 Oliver Kullmann 2009-12-31 19:38 ` Oliver Kullmann 0 siblings, 1 reply; 4+ messages in thread From: Oliver Kullmann @ 2009-11-05 18:09 UTC (permalink / raw) To: git Hello, using IntroductionJava> git remote add -f CSM41 /home/kullmann/csoliver/UofT/Java0910/ProgrammingJava/CS-M41_Programs IntroductionJava> git merge -s ours --no-commit CSM41/master IntroductionJava> git read-tree --prefix=Artikel/Skripte/IntroductionJava/CS_M41/ -u CSM41/master IntroductionJava> git commit -m "Einfuegen des CS-M41-Projektes als Verzeichnis CS_M41" I have imported repository "CS-M41_Programs" into another repository. Later then I replaced in the config-file the old url /home/kullmann/csoliver/UofT/Java0910/ProgrammingJava/CS-M41_Programs by the new one [remote "CSM41"] url = git://github.com/OKullmann/CS-M41-Programming-in-Java.git fetch = +refs/heads/*:refs/remotes/CSM41/* But now IntroductionJava> git pull -s subtree CSM41 master doesn't work anymore: In the CSM41 repository just one file index.html was changed, and apparently the merge strategy recognises that the other files haven't been changed, while index.html is placed just as if the relative path would start from the root of the repository. IntroductionJava> git pull -s subtree CSM41 master remote: Counting objects: 7, done. remote: Compressing objects: 100% (3/3), done. remote: Total 4 (delta 1), reused 0 (delta 0) Unpacking objects: 100% (4/4), done. From git://github.com/OKullmann/CS-M41-Programming-in-Java * branch master -> FETCH_HEAD CONFLICT (delete/modify): Artikel/LaTeX/SystemStile/Html/index.html deleted in HEAD a nd modified in 38b11a96fa009a5b2c24cfc94c0268ab9ca7ce39. Version 38b11a96fa009a5b2c24 cfc94c0268ab9ca7ce39 of Artikel/LaTeX/SystemStile/Html/index.html left in tree. Automatic merge failed; fix conflicts and then commit the result. IntroductionJava> git status # On branch master # Unmerged paths: # (use "git reset HEAD <file>..." to unstage) # (use "git add <file>..." to mark resolution) # # deleted by us: ../../LaTeX/SystemStile/Html/index.html # no changes added to commit (use "git add" and/or "git commit -a") The path of index.html is Artikel/Skripte/IntroductionJava/CS_M41/Html/index.html. Why git thinks that index.html should be placed into another directory Artikel/LaTeX/SystemStile/Html/ I have no clue (this directory doesn't exist). Is it possible to tell "git pull" where the subtree really is, or is that not really the cause of the problem? Thanks for your consideration! Oliver ^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: git pull -s subtree doesn't work properly 2009-11-05 18:09 git pull -s subtree doesn't work properly Oliver Kullmann @ 2009-12-31 19:38 ` Oliver Kullmann 2009-12-31 20:37 ` Oliver Kullmann 2010-01-01 0:05 ` Nanako Shiraishi 0 siblings, 2 replies; 4+ messages in thread From: Oliver Kullmann @ 2009-12-31 19:38 UTC (permalink / raw) To: git Hello, it seems no reply yet (if I understand that web-email-interface properly); has nobody any idea here, or is it a Git bug, or my fault? To me it seems all pretty normal, so I would be glad to get some reaction. The situation didn't improve: It seems "subtree" is completely broken --- it has no idea that the files to be pulled are to be placed in a subtree. (The pull via "git pull -s subtree CSM41 master" actually also manages to ignore the ignore-patterns; don't know how this could happen.) So shouldn't one use this option? Or how can I restart? I would also need in other situations the ability of Git to have one independent repository (say, at Github), which is also included in some other bigger repository (where it is not changed, only included) --- how to do so if the "subtree"-mechanism doesn't work? Hope for some help. Oliver On Thu, Nov 05, 2009 at 06:09:05PM +0000, Oliver Kullmann wrote: > Hello, > > using > > IntroductionJava> git remote add -f CSM41 /home/kullmann/csoliver/UofT/Java0910/ProgrammingJava/CS-M41_Programs > IntroductionJava> git merge -s ours --no-commit CSM41/master > IntroductionJava> git read-tree --prefix=Artikel/Skripte/IntroductionJava/CS_M41/ -u CSM41/master > IntroductionJava> git commit -m "Einfuegen des CS-M41-Projektes als Verzeichnis CS_M41" > > I have imported repository "CS-M41_Programs" into another repository. Later then > I replaced in the config-file the old url /home/kullmann/csoliver/UofT/Java0910/ProgrammingJava/CS-M41_Programs > by the new one > > [remote "CSM41"] > url = git://github.com/OKullmann/CS-M41-Programming-in-Java.git > fetch = +refs/heads/*:refs/remotes/CSM41/* > > But now > > IntroductionJava> git pull -s subtree CSM41 master > > doesn't work anymore: In the CSM41 repository just one file index.html was changed, > and apparently the merge strategy recognises that the other files haven't > been changed, while index.html is placed just as if the relative path would > start from the root of the repository. > > IntroductionJava> git pull -s subtree CSM41 master > remote: Counting objects: 7, done. > remote: Compressing objects: 100% (3/3), done. > remote: Total 4 (delta 1), reused 0 (delta 0) > Unpacking objects: 100% (4/4), done. > >From git://github.com/OKullmann/CS-M41-Programming-in-Java > * branch master -> FETCH_HEAD > CONFLICT (delete/modify): Artikel/LaTeX/SystemStile/Html/index.html deleted in HEAD a > nd modified in 38b11a96fa009a5b2c24cfc94c0268ab9ca7ce39. Version 38b11a96fa009a5b2c24 > cfc94c0268ab9ca7ce39 of Artikel/LaTeX/SystemStile/Html/index.html left in tree. > Automatic merge failed; fix conflicts and then commit the result. > > IntroductionJava> git status > # On branch master > # Unmerged paths: > # (use "git reset HEAD <file>..." to unstage) > # (use "git add <file>..." to mark resolution) > # > # deleted by us: ../../LaTeX/SystemStile/Html/index.html > # > no changes added to commit (use "git add" and/or "git commit -a") > > The path of index.html is Artikel/Skripte/IntroductionJava/CS_M41/Html/index.html. > Why git thinks that index.html should be placed into another directory Artikel/LaTeX/SystemStile/Html/ > I have no clue (this directory doesn't exist). > > Is it possible to tell "git pull" where the subtree really is, or is that > not really the cause of the problem? > > Thanks for your consideration! > > Oliver > > -- > To unsubscribe from this list: send the line "unsubscribe git" in > the body of a message to majordomo@vger.kernel.org > More majordomo info at http://vger.kernel.org/majordomo-info.html ^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: git pull -s subtree doesn't work properly 2009-12-31 19:38 ` Oliver Kullmann @ 2009-12-31 20:37 ` Oliver Kullmann 2010-01-01 0:05 ` Nanako Shiraishi 1 sibling, 0 replies; 4+ messages in thread From: Oliver Kullmann @ 2009-12-31 20:37 UTC (permalink / raw) To: git Just adding a bit more information about the apparently wrong behaviour of "-s subtree": The question is what is the "subtree"??? Apparently git just looks for the first matching file it finds (!) --- now there is in repository B a file index.html, and there is index.html in A (while B is to be merged into A), and thus git apparently deduces that must be the "subtree". If this is not a bug ... Does the repository name belong to what specifies a "subtree"? As one can see below, the repository name has been changed. For example when creating a repository a Github, then the name of the repository is not really under control, and also how Git treats repositories, it seems that the name of the repository doesn't matter. In this case we have in A the directory "CS_M41", while in B it was "CS_M41_Programs"; then later in Github the name of B was further changed to "CS-M41-Programming-in-Java". Is this an issue (should it be)? Oliver P.S. Would renaming CS_M41 in A to CS-M41-Programming-in-Java changed something? Or would it make things worse? I tried it, and it doesn't make any change. On Thu, Dec 31, 2009 at 07:38:00PM +0000, Oliver Kullmann wrote: > Hello, > > it seems no reply yet (if I understand that web-email-interface > properly); has nobody any idea here, or is it a Git bug, > or my fault? > > To me it seems all pretty normal, so I would be glad to get > some reaction. > > The situation didn't improve: It seems "subtree" is completely broken --- > it has no idea that the files to be pulled are to be placed in > a subtree. (The pull via "git pull -s subtree CSM41 master" actually > also manages to ignore the ignore-patterns; don't know how this > could happen.) > > So shouldn't one use this option? > Or how can I restart? > > I would also need in other situations the ability of Git to have one independent repository (say, > at Github), which is also included in some other bigger repository (where it is > not changed, only included) --- how to do so if the "subtree"-mechanism doesn't work? > > Hope for some help. > > Oliver > > > > On Thu, Nov 05, 2009 at 06:09:05PM +0000, Oliver Kullmann wrote: > > Hello, > > > > using > > > > IntroductionJava> git remote add -f CSM41 /home/kullmann/csoliver/UofT/Java0910/ProgrammingJava/CS-M41_Programs > > IntroductionJava> git merge -s ours --no-commit CSM41/master > > IntroductionJava> git read-tree --prefix=Artikel/Skripte/IntroductionJava/CS_M41/ -u CSM41/master > > IntroductionJava> git commit -m "Einfuegen des CS-M41-Projektes als Verzeichnis CS_M41" > > > > I have imported repository "CS-M41_Programs" into another repository. Later then > > I replaced in the config-file the old url /home/kullmann/csoliver/UofT/Java0910/ProgrammingJava/CS-M41_Programs > > by the new one > > > > [remote "CSM41"] > > url = git://github.com/OKullmann/CS-M41-Programming-in-Java.git > > fetch = +refs/heads/*:refs/remotes/CSM41/* > > > > But now > > > > IntroductionJava> git pull -s subtree CSM41 master > > > > doesn't work anymore: In the CSM41 repository just one file index.html was changed, > > and apparently the merge strategy recognises that the other files haven't > > been changed, while index.html is placed just as if the relative path would > > start from the root of the repository. > > > > IntroductionJava> git pull -s subtree CSM41 master > > remote: Counting objects: 7, done. > > remote: Compressing objects: 100% (3/3), done. > > remote: Total 4 (delta 1), reused 0 (delta 0) > > Unpacking objects: 100% (4/4), done. > > >From git://github.com/OKullmann/CS-M41-Programming-in-Java > > * branch master -> FETCH_HEAD > > CONFLICT (delete/modify): Artikel/LaTeX/SystemStile/Html/index.html deleted in HEAD a > > nd modified in 38b11a96fa009a5b2c24cfc94c0268ab9ca7ce39. Version 38b11a96fa009a5b2c24 > > cfc94c0268ab9ca7ce39 of Artikel/LaTeX/SystemStile/Html/index.html left in tree. > > Automatic merge failed; fix conflicts and then commit the result. > > > > IntroductionJava> git status > > # On branch master > > # Unmerged paths: > > # (use "git reset HEAD <file>..." to unstage) > > # (use "git add <file>..." to mark resolution) > > # > > # deleted by us: ../../LaTeX/SystemStile/Html/index.html > > # > > no changes added to commit (use "git add" and/or "git commit -a") > > > > The path of index.html is Artikel/Skripte/IntroductionJava/CS_M41/Html/index.html. > > Why git thinks that index.html should be placed into another directory Artikel/LaTeX/SystemStile/Html/ > > I have no clue (this directory doesn't exist). > > > > Is it possible to tell "git pull" where the subtree really is, or is that > > not really the cause of the problem? > > > > Thanks for your consideration! > > > > Oliver > > ^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: git pull -s subtree doesn't work properly 2009-12-31 19:38 ` Oliver Kullmann 2009-12-31 20:37 ` Oliver Kullmann @ 2010-01-01 0:05 ` Nanako Shiraishi 1 sibling, 0 replies; 4+ messages in thread From: Nanako Shiraishi @ 2010-01-01 0:05 UTC (permalink / raw) To: Oliver Kullmann; +Cc: git Quoting Oliver Kullmann <O.Kullmann@swansea.ac.uk> > it seems no reply yet (if I understand that web-email-interface > properly); has nobody any idea here, or is it a Git bug, > or my fault? Because you don't specify where in your current directory hierarchy the root level of the tree you are merging goes when you run "git merge -s subtree", the merge mechanism has to find the most similar directory by itself, and if you have more than one similar directories, it can't guess correctly. It sounds similar to http://thread.gmane.org/gmane.comp.version-control.git/135009/focus=135033 -- Nanako Shiraishi http://ivory.ap.teacup.com/nanako3/ ^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2010-01-01 0:06 UTC | newest] Thread overview: 4+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2009-11-05 18:09 git pull -s subtree doesn't work properly Oliver Kullmann 2009-12-31 19:38 ` Oliver Kullmann 2009-12-31 20:37 ` Oliver Kullmann 2010-01-01 0:05 ` Nanako Shiraishi
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox