git subtree pull together with strategy-option=theirsWhat is the difference between 'git pull' and 'git fetch'?When would you use the different git merge strategies?Git workflow and rebase vs merge questionsSimple tool to 'accept theirs' or 'accept mine' on a whole file using gitEasy way to pull latest of all git submodulesHow do I force “git pull” to overwrite local files?Using Git and Dropbox together effectively?Squash my last X commits together using Gitgit cherry-pick says “…38c74d is a merge but no -m option was given”Choose Git merge strategy for specific files (“ours”, “mine”, “theirs”)
Fedora boot screen shows both Fedora logo and Lenovo logo. Why and How?
What was the Shuttle Carrier Aircraft escape tunnel?
Output of "$OSTYPE:6" on old releases of Mac OS X
If I wouldn't want to read the story, is writing it still a good idea?
Is my Rep in Stack-Exchange Form?
How do I professionally let my manager know I'll quit over smoking in the office?
I am completely new to Tales from the Floating Vagabond, how do I get started?
Why did pressing the joystick button spit out keypresses?
A STL-like vector implementation in C++
What is this tool/thing in an Aztec painting?
What are the penalties for overstaying in USA?
As a fresh graduate, should I get my first credit card?
Has there been any indication at all that further negotiation between the UK and EU is possible?
Should I prioritize my 401(k) over my student loans?
Find the probability that the 8th woman to appear is in 17th position.
Java TreeMap.floorKey() equivalent for std::map
(Newbie question)Why is voltage measurement of circuit different when switch is on?
Find the C-factor of a vote
Employer wants to use my work email account after I quit
Are all instances of trolls turning to stone ultimately references back to Tolkien?
First-year PhD giving a talk among well-established researchers in the field
Why do some games show lights shine thorugh walls?
Links to webpages in books
How does a monk's Martial Arts feature modify damage done by magical monk weapons?
git subtree pull together with strategy-option=theirs
What is the difference between 'git pull' and 'git fetch'?When would you use the different git merge strategies?Git workflow and rebase vs merge questionsSimple tool to 'accept theirs' or 'accept mine' on a whole file using gitEasy way to pull latest of all git submodulesHow do I force “git pull” to overwrite local files?Using Git and Dropbox together effectively?Squash my last X commits together using Gitgit cherry-pick says “…38c74d is a merge but no -m option was given”Choose Git merge strategy for specific files (“ours”, “mine”, “theirs”)
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
I have a project A which uses project B as as a subtree. I want to pull stuffs from project B, which has been updated. I can run command like the following:
git subtree pull --prefix <prefix> --squash <git-repo> master
When I do this a merge conflict exists, within the scope of the subtree prefix directory. I do however want to accept everything that project B has updated unconditionally. (Why are those committed in the first place? It's hard to explain but it is the nature of our project and our developers, however unreasonable.)
So in another word what I really want is to make sure the prefix directory is updated to the latest in B.
In a normal merge between different branches, I have something at my disposal:
git merge --strategy-option=theirs branchB
which merges normally but accepts branchB's version wherever there is a conflict.
Is there similar thing I can do? Or is the best thing to do is to just remove the subtree project and add it back again?
git git-subtree
add a comment |
I have a project A which uses project B as as a subtree. I want to pull stuffs from project B, which has been updated. I can run command like the following:
git subtree pull --prefix <prefix> --squash <git-repo> master
When I do this a merge conflict exists, within the scope of the subtree prefix directory. I do however want to accept everything that project B has updated unconditionally. (Why are those committed in the first place? It's hard to explain but it is the nature of our project and our developers, however unreasonable.)
So in another word what I really want is to make sure the prefix directory is updated to the latest in B.
In a normal merge between different branches, I have something at my disposal:
git merge --strategy-option=theirs branchB
which merges normally but accepts branchB's version wherever there is a conflict.
Is there similar thing I can do? Or is the best thing to do is to just remove the subtree project and add it back again?
git git-subtree
add a comment |
I have a project A which uses project B as as a subtree. I want to pull stuffs from project B, which has been updated. I can run command like the following:
git subtree pull --prefix <prefix> --squash <git-repo> master
When I do this a merge conflict exists, within the scope of the subtree prefix directory. I do however want to accept everything that project B has updated unconditionally. (Why are those committed in the first place? It's hard to explain but it is the nature of our project and our developers, however unreasonable.)
So in another word what I really want is to make sure the prefix directory is updated to the latest in B.
In a normal merge between different branches, I have something at my disposal:
git merge --strategy-option=theirs branchB
which merges normally but accepts branchB's version wherever there is a conflict.
Is there similar thing I can do? Or is the best thing to do is to just remove the subtree project and add it back again?
git git-subtree
I have a project A which uses project B as as a subtree. I want to pull stuffs from project B, which has been updated. I can run command like the following:
git subtree pull --prefix <prefix> --squash <git-repo> master
When I do this a merge conflict exists, within the scope of the subtree prefix directory. I do however want to accept everything that project B has updated unconditionally. (Why are those committed in the first place? It's hard to explain but it is the nature of our project and our developers, however unreasonable.)
So in another word what I really want is to make sure the prefix directory is updated to the latest in B.
In a normal merge between different branches, I have something at my disposal:
git merge --strategy-option=theirs branchB
which merges normally but accepts branchB's version wherever there is a conflict.
Is there similar thing I can do? Or is the best thing to do is to just remove the subtree project and add it back again?
git git-subtree
git git-subtree
asked Mar 25 at 9:29
huggiehuggie
6,96818 gold badges70 silver badges111 bronze badges
6,96818 gold badges70 silver badges111 bronze badges
add a comment |
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55334741%2fgit-subtree-pull-together-with-strategy-option-theirs%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55334741%2fgit-subtree-pull-together-with-strategy-option-theirs%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown