我是Github的新手,我有一个分支想要与主分支合并。我无法通过git命令行将其合并,这非常复杂。 我尝试按照以下文档在Github网站上进行合并:
Merging a pull request on GitHub
但是我收到以下消息:
没有什么可比较的!
这是项目:
https://github.com/SumayahAlharbi/erecords
更新
请检查以下图片:
答案 0 :(得分:3)
4次提交在大师后面意味着什么?
没有什么可比较的!
git diff --name-only master_branch
。 答案 1 :(得分:1)
我刚刚检查了您的仓库。 public CountDownTimer countDownTimer = null;
private void start () {
if (countDownTimer == null) {
time.setText("60");
countDownTimer = new CountDownTimer(60 * 1000, 1000) {
@Override
public void onTick(long millisUntilFinished) {
time.setText("" + millisUntilFinished / 1000);
}
@Override
public void onFinish() {
countDownTimer = null;
time.setText("Done !");
}
};
countDownTimer.start();
pop();
}
}
分支的更改已合并到ExportFeature
分支中,然后还原了合并。这就是为什么现在如果您提出将master
合并到ExportFeature
中的拉取请求,则会得到master
。
查看There isn’t anything to compare!
分支中已经存在的关于ExportFeature
的最新提交。
之所以在master
分支上看到4 commits behind master
是因为ExportFeature
分支比master
分支多4个提交。如果您看到ExportFeature
分支上的提交总数为7,而ExportFeature
分支上的提交总数为11。如果您需要在master
分支上进行更多更改,您需要在本地git终端上当前分支为ExportFeature
时运行命令master
,从git pull origin master
分支中获取最新更改。