Git merge confusion. Diff shows differences, and merge says there are none

后端 未结 2 1946
感动是毒
感动是毒 2021-01-23 17:21

Im starting to learn to use git, and I am having a situation that I dont understand (the repository was taken out of svn)

Im on a branch jacob@379 with ever

2条回答
  •  旧时难觅i
    2021-01-23 17:58

    I think the problem is here:

    warning: refname 'jacob@379' is ambiguous.
    

    try HEAD instead of jacob@379

    But still, probably gotta get an unambiguous branch name. I think the @ has a special meaning. Or maybe you have a tag or other ref with the same name?

    Also, it's great to pop open a graphical program that shows you all the tags and branches and all that with lines. If you've got it, try: gitk --all

提交回复
热议问题