git-merge
Is there a git-merge --dry-run option?
I\'m merging in a remote branch that may have a lot of conflicts.How can I tell if it will have conflicts or not?[详细]
2023-03-12 09:35 分类:问答Use vimdiff to replace entire file?
I\'m using vimdiff for a git merge. Is there a quick way to select 1 file to use, right now i\'m just selecting everything from one buffer, replacing the $MERGE with that, and then saving. I guess I c[详细]
2023-03-11 16:21 分类:问答Keeping repositories in sync without being able to push and pull commits
As of right now, I cant use an git server, so I use one of my favourite git features which is turning any directory in my computer into a git repo ( just the git init thing).[详细]
2023-03-10 11:58 分类:问答How to avoid git rebase killing merge commits?
Given the following git history: C-Iorigin/master / A-B-F-G-Hmaster \\/ D-Ebranch-b I want to rebase my local master branch on top of origin/master, but I want to preserve the merge commit G. When[详细]
2023-03-10 06:20 分类:问答How to see commits that were merged in to a merge commit?
If my-feature-branch w开发者_StackOverflow中文版as merged into my-main-branch, how can I see what commits were merged in from my-feature-branch?git log abc123^..abc123[详细]
2023-03-09 07:04 分类:问答How to prevent merge from falling back to normal merge strategy when a fast-forward merge is not possible?
The git merge command has an option to perform开发者_如何学Go fast-forward merge, but this is not what I want, because if it can\'t do a fast-forward merge, it uses the normal merge.[详细]
2023-03-06 21:27 分类:问答Git merge errors
I have a git branch called 9-sign-in-out with perfectly working code, and I want to turn it into the master. I\'m currently on the master branch.[详细]
2023-03-05 19:13 分类:问答Find all commits in a particular branch in GIT
This might be a repeated question but i didn\'t find exact answers. Lets say i have 2 branches br1 and br2 with 3 commits each.[详细]
2023-03-04 15:00 分类:问答Git: Subtree Merge into a Deeply Nested Subdirectory?
I\'m attempting to use git\'s subtree merge stategy where the subdirectory into which I want to merge is nested fairly deeply - currently four levels deep.[详细]
2023-03-03 12:27 分类:问答git recursive strategy with multiple ancestors and kdiff3
I\'m running a merge with a scenario where several \"common ancestors\" are available so Git runs \"g开发者_如何学Pythonit merge recursive\" strategy.[详细]
2023-03-03 04:15 分类:问答