Skip to main content
Filter by
Sorted by
Tagged with
Tooling
0 votes
0 replies
63 views

Given a merge commit, git show --remerge-diff shows how the recorded merge result differs from a hypothetical re-merge. Is there a way to see this graphically, something like a GUI tool would show a 3-...
Jakub Bochenski's user avatar
4 votes
3 answers
177 views

I am running into some weird merge conflict issues even though I am the only one working on the repository and have only made linear commits. I have these branches: main feature-A (based off of main) ...
Nermin's user avatar
  • 1,780
0 votes
1 answer
116 views

I prefer to use the normal text editor (not the merge editor) to resolve merge conflicts in VSCode. Sometimes, I need to accept both changes, but want the new text from the "incoming" change ...
ThatsJustCheesy's user avatar
0 votes
1 answer
73 views

Here is a typical example of executing git rebase --interactive --autosquash: git rebase --interactive --update-refs origin/master Rebasing (1/102) Rebasing (2/102) error: could not apply eff00df3... ...
tribbloid's user avatar
  • 3,860
1 vote
2 answers
130 views

I have a feature branch that I want to rebase on main with conflicts that need to be resolved. I want to resolve these conflicts in a separate commit to my original changes. My branch has two commits, ...
easely's user avatar
  • 63
0 votes
1 answer
139 views

I have recently learned that git diff --cached shows how the new commit during an interactive rebase conflict after resolving the conflict looks. What does git diff compare during resolving a git ...
lmixa's user avatar
  • 79
0 votes
1 answer
452 views

GitHub Actions have stopped running. They are stuck with the message: "Expected - Waiting for status to be reported". Other messages on the pull request page are: "Checks awaiting ...
Timur Shtatland's user avatar
0 votes
4 answers
178 views

This is a scenario I've run into multiple times: suppose you have a feature branch, and you then need to merge in the develop branch and resolve conflicts prior to your PR being merged. You merge ...
Anomaly's user avatar
  • 1,142
1 vote
4 answers
121 views

I am trying to understand what is the process for testing two versions of the code while making changes to common code that is identical across versions. I want to have branch-specific code that is ...
andrea m.'s user avatar
  • 726
3 votes
1 answer
123 views

I have a private file that leaks into the repo, and I want to delete it. Here are the commits I suppose that it is first added: git log --follow --diff-filter=A --find-renames=40% --pretty=reference --...
Ooker's user avatar
  • 3,420
0 votes
1 answer
221 views

As far as I know, there are two options to make meld automatically merge the changes which do not conflict. What is the difference between both options, and which is preferred? git config --global ...
guettli's user avatar
  • 28k
0 votes
1 answer
325 views

I'm rebasing my branch on origin/master using git pull --rebase origin master Now I get some merge conflicts regarding git submodule updates: diff --cc cpp_lib index c14a3fe5,71b17a71..00000000 --- a/...
glades's user avatar
  • 5,472
0 votes
4 answers
151 views

I know various ways to list git branches (just git branches or get for-each-ref) as well as how to check each individual branch if it has conflicts with another (lets assume origin/develop for now): ...
AncientSwordRage's user avatar
-1 votes
2 answers
114 views

I have a git repository that has two branches with unrelated history like this A' A - B - [...] - C where the [...]-part is complicated (non-linear and many commits). Both the commits A and A' are ...
Stefan Witzel's user avatar
1 vote
1 answer
95 views

I had a feature branch which was based off of develop, let's call it feature-1. At the same point in time I also took another feature branch feature-2. feature-1 was a real feature branch that I've ...
stucash's user avatar
  • 1,308

15 30 50 per page
1
2 3 4 5
39