Skip to main content
Filter by
Sorted by
Tagged with
4 votes
2 answers
79 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,140
0 votes
1 answer
48 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,792
0 votes
1 answer
120 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
4 answers
113 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,132
3 votes
1 answer
107 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,404
0 votes
1 answer
231 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,356
-1 votes
2 answers
92 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
2 votes
2 answers
92 views

I got sick of a python god module and broke it up into two smaller modules, there was limited refactoring beyond pulling functions/objects out and putting them into files that made more logical sense. ...
dsollen's user avatar
  • 6,521
4 votes
1 answer
82 views

I am trying to collect a dataset of merge conflicts based on programmatic command line interactions. The program should run in the terminal, I am fine with using external tools as long as they are ...
Liqs's user avatar
  • 197
2 votes
1 answer
96 views

When git working tree is in conflict state during merge/rebase/cherry-pick, it's possible to get ours/theirs/base version of individual files by several ways, e.g. git checkout --ours/--theirs path/...
xmedeko's user avatar
  • 7,948
-1 votes
1 answer
105 views

Let's say I have a feature_branch that is based on master and contains commits D and E. Afterward, master receives two new commits, F and G : master: A---B---C---F---G \ ...
crooky m's user avatar
0 votes
1 answer
132 views

We use Azure devops for development, there are 2 branches: stable and release. When do development we create feature branch from release and create PR to merge it back to release (by default sqush ...
rhbc73's user avatar
  • 767
0 votes
1 answer
153 views

I have two branches, 'master' and 'develop'. Other branches have been merged into 'master'. Now, when I merge 'master' into 'develop', some files from 'master' are not carried over into 'develop'. How ...
zangetsu's user avatar
  • 106
0 votes
1 answer
72 views

I have a git log like this * cb0bfd5 (HEAD -> feat/nuxt, fork/feat/nuxt) Split into icons * f2d2410 fix: buttons spaces & move layouts to components (#3) * 881d4ab Split into Components, ...
Bernd Storath's user avatar
0 votes
1 answer
214 views

I've been trying to set up a custom merge driver for merge conflicts in Git and have it mostly working, but can't figure out why it doesn't automatically stage successfully-resolved conflicts like the ...
BonusLord's user avatar
  • 463
5 votes
1 answer
98 views

I have an Obsidian vault under version control, and one of the plugins synchronises with an external source, updating a timestamp in the config file. I switch between two separate user accounts for ...
Pete's user avatar
  • 12.7k
1 vote
1 answer
775 views

I develop an app using Visual Studio Code on my computer, and I use the Source Control function to sync the code on a GitHub account. I've never had any issue using the basic functions: I commit my ...
Bol's user avatar
  • 107
0 votes
0 answers
49 views

TLDR; On master branch the discourse section was removed On dev branch the fddkim section was removed dev branch is being rebased on top of master A merge conflict happened I am looking for an ...
Eugen Konkov's user avatar
1 vote
0 answers
47 views

I hope someone can tell me what Git is doing to me. First, a caution: the stuff in this repo is totally proprietary. I doubt that I could sanitize it without changing it so much that the problem goes ...
Jonathan Sachs's user avatar
1 vote
0 answers
196 views

Both Stack Overflow answers, and various webpages, give contradictory or conflicting definitions of "merge strategy", "merge driver", and "mergetool". Here is my best ...
mernst's user avatar
  • 8,245
0 votes
1 answer
156 views

For the past year we've been working with a staging and master branches, testing our changes before merging to master.Now when trying to pull request from staging to master I'm facing an error message ...
Anton Olshanetsky's user avatar
1 vote
1 answer
216 views

I was on a branch called make-monolith-ids-constant. I ran these commands in the terminal. git checkout make-monolith-ids-constant git fetch origin master git rebase origin/master I now have a merge ...
user avatar
0 votes
1 answer
136 views

I am encountering challenges in resolving conflicts in my React Native project using GitHub Desktop and VSCode. I worked in a branch fonts-and-colors that is forked from main. I was going to commit ...
Takodana's user avatar
0 votes
2 answers
244 views

I want to resolve a git merge conflict (between feature and test branches), but there are some limitations: cannot push directly to test and master branches cannot merge feature branch into the test ...
Márk Matuz's user avatar
2 votes
1 answer
329 views

I have a master branch and development/Server branch in git. I created Pull Request and trying to merge development/Server to master branch but I am facing conflict. I am getting conflicts for 2 files:...
Veljko's user avatar
  • 59

1
2 3 4 5
12