如何判断哪个git分支被检出?

时间:2011-05-19 02:55:38

标签: git github

我在github上有一个项目,我只是承诺并推动它。但是,我的更改不会显示在github上。

我想我没有签出master分支。这意味着我不知道我目前正在工作的分支机构的名称。老实说,我真的不知道我在哪里提交了我的更改。

如何找出我目前检查过哪个分支?如何将这些更改合并到master?我刚刚做了什么?

当我承诺时,它说:

 # Please enter the commit message for your changes. Lines starting
 # with '#' will be ignored, and an empty message aborts the commit.
 # Not currently on any branch.

然后我做了一个git push,我不知道那是什么推向了。

$ git log

commit dcb85bcfafa18d9dfe9f12659e7ba0e2662ca45e
Author: ...
Date:   Wed May 18 22:41:57 2011 -0400

    Fix for new vm website layout, add CREDITS

我的代码在哪里?如何将其合并为主?

1 个答案:

答案 0 :(得分:7)

git branch
git branch --contains dcb85b
gitk --all --date-order

要将其合并为母版,您可以git merge dcb85bgit cherry-pick dcb85b或任意数量的命令之一。