Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

25
votes
3answers
9k views

How to resolve a conflict with git-svn?

What is the best way to resolve a conflict when doing a "git svn rebase", and the git branch you are on becomes "(no-branch)"?
20
votes
2answers
5k views

Git: “Not currently on any branch.” Is there an easy way to get back on a branch, while keeping the changes?

So I've done some work in the repository and when I'm about to commit I realize that I'm not currently on any branch. This happens a lot when working with submodules and I am able to solve it, but the ...
9
votes
2answers
2k views

Why did git set us on (no branch)?

This morning we pull from our repo, and git put us on (no branch). I don't understand this, why did this happen? And how get out of it without losing our changes?
1
vote
4answers
85 views

What do do with commit made in a detached head

Using git i made somthing like this git clone git checkout {a rev number tree rev before} (here i started to be in a detached head state) //hacking git commit //hacking git commit (some commit where ...
0
votes
1answer
16 views

JGit retrieve branch on which a commitID was made

When I checkout from a commitID, git goes into a NO_BRANCH detached state. So the JGit APi which I use to get the branch name is returning the commit. So I need to a way, in JGit API, to find the ...