Tagged Questions
1
vote
0answers
73 views
Git merge while switching to submodule
We are using Qooxdoo framework in our application. For now, it's copy is stored in our Git repository in the root folder "qooxdoo". We have decided to replace that with submodule pointing directly to ...
1
vote
1answer
86 views
How to let Git know that certain files in the single branch are branched from each other
We have a product with different themes, that are stored in master branch like this
themes/theme_one/...
themes/theme_two/...
etc
Each folder has its own structure and keeps CSS and HTML files. ...
0
votes
1answer
1k views
Git Merge conflict in submodule. I just want to commit with their version. How?
Basically I have read the git merge conflicts guide, and I'm not sure it directly addresses my situation. I have a conflict in submodules, and I just want to go with their version which I understand ...
6
votes
1answer
394 views
strange output during git merge
I am in a clone named /private/gmills, and I ran git merge main_int.
I am seeing a reference to another clone for some other user on a different machine. What does this mean?
I have only 1 remote ...
9
votes
1answer
554 views
Replaced third party code with git submodules, now I can't switch branches
Here's the story:
I have 2 git branches master and develop
I'm currently on develop.
I've long since had the source files of a third party library included in my repo in the directory ...
2
votes
1answer
201 views
Git submodule untracked after merge of “previous” branch
My git repos contains a master branch with the development version of our application and a branch for each released (or currently tested) version of the application.
Since the last branch we added a ...
0
votes
1answer
742 views
git submodules - another puzzle - reference is not a tree
A developer here ran the steps we recommend for git usage, and has lost a submodule commit. I understand that this error means that she pushed in the super project but not in the submodule, but she ...
7
votes
1answer
669 views
Git submodule pull request work flow
I am curious about some best practices.
There is a git repo that I would like to include as a submodule in my project. I would also like to contribute to this repo and offer pull requests. I have ...