在我的项目中,我们有三个代码所在的不同分支。 我给第1,第2,第3名称作为分支名称。第一个是任何代码的起始位置,合并发生在第1个第2个到第2个第3个。
查询
如何在两个变更清单之间取得区别 - 一个。两个changelist都属于同一个分支。 湾两个更改列表都属于不同的分支,可以说是第1和第2。
对于给定的更改列表,有没有办法知道该更改列表是否曾被撤消或回滚?
答案 0 :(得分:0)
1a)@Override
public void setUserVisibleHint(boolean isVisibleToUser) {
super.setUserVisibleHint(isVisibleToUser);
if (isVisibleToUser) {
startAnimation(); // If I comment this line my View will be hidden always because I am hiding the View when it's not focused on the user
} else {
checkAndHide();
}
}
public void startAnimation() {
// View might not created, when calling this, because setUserVisibleHint get call before onCreateView()
new Handler().postDelayed(new Runnable() {
@Override
public void run() {
if (mView != null) {
}
}
}, 500);
}
1b)p4 diff2 //depot/branch/...@CHANGE1 //depot/branch/...@CHANGE2
2)如果您使用p4 diff2 //depot/branch1/...@CHANGE1 //depot/branch2/...@CHANGE2
命令:
p4 undo
(在历史中寻找“撤消”)
如果您使用P4V或其他方法:否。