我有一个关于github的项目,我只是承诺并推动它。但是,我的更改不会显示在github上。
我想我没有检查过那家分行。也就是说我不知道我现在工作的部门的名字。老实说,我真的不知道我在哪里做的改变。
我怎样才能知道我目前签出的是哪家分行?如何将这些更改合并到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.

然后我做了一个master,我不知道它被推到了哪里。
$ git log

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

    Fix for new vm website layout, add CREDITS

我的密码在哪里?我怎样才能把它合并成师父?

最佳答案

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

要将其合并到master中,可以git merge dcb85bgit cherry-pick dcb85b或任意数量的命令之一。

08-27 04:10