答案 0 :(得分:3)
是。在您提交之前,Git不知道对本地文件系统的更改。有些IDE会记录本地更改(例如IntelliJ会这样做),所以我相信这是你最好的镜头。按撤消快捷方式,查看会发生什么,或在菜单中查找“本地历史记录”。
如果您提交了更改,那么您可以在提交树中找到提交,或者正在查看$(document).ready(function() {
// Infinite Ajax Scroll configuration
jQuery.ias({
container : '.wrap', // main container where data goes to append
item: '.item', // single items
pagination: '.nav', // page navigation
next: '.nav a', // next page selector
loader: '<img src="css/ajax-loader.gif"/>', // loading gif
triggerPageThreshold: 5, // show load more if scroll more than this
onLoadItems: apply_changes()
// OR:
onLoadItems: function(items) {
// Paste everything that function apply_changes() has.
}
}
});
function apply_changes()
{
if($('#select_box').val() == 'notresolved') {
$( '#table-tbody #table-tr').show();
$( "#table-tbody #table-tr:contains('Разрешен')").hide();
}
if($('#select_box').val() == 'new') {
$( '#table-tbody #table-tr').show();
$( "#table-tbody #table-tr:not(:contains('Нов'))").hide();
}
if($('#select_box').val() == 'opened') {
$( '#table-tbody #table-tr').show();
$( "#table-tbody #table-tr:not(:contains('Отворен'))").hide();
}
if($('#select_box').val() == 'resolved') {
$( '#table-tbody #table-tr').show();
$( "#table-tbody #table-tr:not(:contains('Разрешен'))").hide();
}
if($('#select_box').val() == 'dead') {
$( '#table-tbody #table-tr').show();
$( "#table-tbody #table-tr:not(:contains('Dead'))").hide();
}
if($('#select_box').val() == 'all') {
$( '#table-tbody #table-tr').show();
}
}
。