sindrets / diffview.nvim

Single tabpage interface for easily cycling through diffs for all modified files for any git rev.
Other
4.02k stars 111 forks source link

[Diffview.nvim] No git history for the target(s) given the current options! #250

Closed ShiChenCong closed 1 year ago

ShiChenCong commented 1 year ago

After typed DiffviewFileHistory %, it shows image

Neovim version: NVIM v0.9.0-dev-2996+ged27f0e93-dirty

Git version: 2.38.1

plugin config:

-- Lua
local actions = require("diffview.actions")
require("diffview").setup({
  diff_binaries = false, -- Show diffs for binaries
  enhanced_diff_hl = false, -- See ':h diffview-config-enhanced_diff_hl'
  git_cmd = { "git" }, -- The git executable followed by default args.
  use_icons = true, -- Requires nvim-web-devicons
  watch_index = true, -- Update views and index buffers when the git index changes.
  icons = { -- Only applies when use_icons is true.
    folder_closed = "",
    folder_open = "",
  },
  signs = {
    fold_closed = "",
    fold_open = "",
    done = "✓",
  },
  view = {
    -- Configure the layout and behavior of different types of views.
    -- Available layouts:
    --  'diff1_plain'
    --    |'diff2_horizontal'
    --    |'diff2_vertical'
    --    |'diff3_horizontal'
    --    |'diff3_vertical'
    --    |'diff3_mixed'
    --    |'diff4_mixed'
    -- For more info, see ':h diffview-config-view.x.layout'.
    default = {
      -- Config for changed files, and staged files in diff views.
      layout = "diff2_horizontal",
    },
    merge_tool = {
      -- Config for conflicted files in diff views during a merge or rebase.
      layout = "diff3_horizontal",
      disable_diagnostics = true, -- Temporarily disable diagnostics for conflict buffers while in the view.
    },
    file_history = {
      -- Config for changed files in file history views.
      layout = "diff2_horizontal",
    },
  },
  file_panel = {
    listing_style = "tree", -- One of 'list' or 'tree'
    tree_options = { -- Only applies when listing_style is 'tree'
      flatten_dirs = true, -- Flatten dirs that only contain one single dir
      folder_statuses = "only_folded", -- One of 'never', 'only_folded' or 'always'.
    },
    win_config = { -- See ':h diffview-config-win_config'
      position = "left",
      width = 35,
      win_opts = {}
    },
  },
  file_history_panel = {
    log_options = { -- See ':h diffview-config-log_options'
      single_file = {
        diff_merges = "combined",
      },
      multi_file = {
        diff_merges = "first-parent",
      },
    },
    win_config = { -- See ':h diffview-config-win_config'
      position = "bottom",
      height = 16,
      win_opts = {}
    },
  },
  commit_log_panel = {
    win_config = { -- See ':h diffview-config-win_config'
      win_opts = {},
    }
  },
  default_args = { -- Default args prepended to the arg-list for the listed commands
    DiffviewOpen = {},
    DiffviewFileHistory = {},
  },
  hooks = {}, -- See ':h diffview-config-hooks'
  keymaps = {
    disable_defaults = false, -- Disable the default keymaps
    view = {
      -- The `view` bindings are active in the diff buffers, only when the current
      -- tabpage is a Diffview.
      ["<tab>"]      = actions.select_next_entry, -- Open the diff for the next file
      ["<s-tab>"]    = actions.select_prev_entry, -- Open the diff for the previous file
      ["gf"]         = actions.goto_file, -- Open the file in a new split in the previous tabpage
      ["<C-w><C-f>"] = actions.goto_file_split, -- Open the file in a new split
      ["<C-w>gf"]    = actions.goto_file_tab, -- Open the file in a new tabpage
      ["<leader>e"]  = actions.focus_files, -- Bring focus to the file panel
      ["<leader>b"]  = actions.toggle_files, -- Toggle the file panel.
      ["g<C-x>"]     = actions.cycle_layout, -- Cycle through available layouts.
      ["[x"]         = actions.prev_conflict, -- In the merge_tool: jump to the previous conflict
      ["]x"]         = actions.next_conflict, -- In the merge_tool: jump to the next conflict
      ["<leader>co"] = actions.conflict_choose("ours"), -- Choose the OURS version of a conflict
      ["<leader>ct"] = actions.conflict_choose("theirs"), -- Choose the THEIRS version of a conflict
      ["<leader>cb"] = actions.conflict_choose("base"), -- Choose the BASE version of a conflict
      ["<leader>ca"] = actions.conflict_choose("all"), -- Choose all the versions of a conflict
      ["dx"]         = actions.conflict_choose("none"), -- Delete the conflict region
    },
    diff1 = { --[[ Mappings in single window diff layouts ]] },
    diff2 = { --[[ Mappings in 2-way diff layouts ]] },
    diff3 = {
      -- Mappings in 3-way diff layouts
      { { "n", "x" }, "2do", actions.diffget("ours") }, -- Obtain the diff hunk from the OURS version of the file
      { { "n", "x" }, "3do", actions.diffget("theirs") }, -- Obtain the diff hunk from the THEIRS version of the file
    },
    diff4 = {
      -- Mappings in 4-way diff layouts
      { { "n", "x" }, "1do", actions.diffget("base") }, -- Obtain the diff hunk from the BASE version of the file
      { { "n", "x" }, "2do", actions.diffget("ours") }, -- Obtain the diff hunk from the OURS version of the file
      { { "n", "x" }, "3do", actions.diffget("theirs") }, -- Obtain the diff hunk from the THEIRS version of the file
    },
    file_panel = {
      ["j"]             = actions.next_entry, -- Bring the cursor to the next file entry
      ["<down>"]        = actions.next_entry,
      ["k"]             = actions.prev_entry, -- Bring the cursor to the previous file entry.
      ["<up>"]          = actions.prev_entry,
      ["<cr>"]          = actions.select_entry, -- Open the diff for the selected entry.
      ["o"]             = actions.select_entry,
      ["<2-LeftMouse>"] = actions.select_entry,
      ["-"]             = actions.toggle_stage_entry, -- Stage / unstage the selected entry.
      ["S"]             = actions.stage_all, -- Stage all entries.
      ["U"]             = actions.unstage_all, -- Unstage all entries.
      ["X"]             = actions.restore_entry, -- Restore entry to the state on the left side.
      ["L"]             = actions.open_commit_log, -- Open the commit log panel.
      ["<c-b>"]         = actions.scroll_view(-0.25), -- Scroll the view up
      ["<c-f>"]         = actions.scroll_view(0.25), -- Scroll the view down
      ["<tab>"]         = actions.select_next_entry,
      ["<s-tab>"]       = actions.select_prev_entry,
      ["gf"]            = actions.goto_file,
      ["<C-w><C-f>"]    = actions.goto_file_split,
      ["<C-w>gf"]       = actions.goto_file_tab,
      ["i"]             = actions.listing_style, -- Toggle between 'list' and 'tree' views
      ["f"]             = actions.toggle_flatten_dirs, -- Flatten empty subdirectories in tree listing style.
      ["R"]             = actions.refresh_files, -- Update stats and entries in the file list.
      ["<leader>e"]     = actions.focus_files,
      ["<leader>b"]     = actions.toggle_files,
      ["g<C-x>"]        = actions.cycle_layout,
      ["[x"]            = actions.prev_conflict,
      ["]x"]            = actions.next_conflict,
    },
    file_history_panel = {
      ["g!"]            = actions.options, -- Open the option panel
      ["<C-A-d>"]       = actions.open_in_diffview, -- Open the entry under the cursor in a diffview
      ["y"]             = actions.copy_hash, -- Copy the commit hash of the entry under the cursor
      ["L"]             = actions.open_commit_log,
      ["zR"]            = actions.open_all_folds,
      ["zM"]            = actions.close_all_folds,
      ["j"]             = actions.next_entry,
      ["<down>"]        = actions.next_entry,
      ["k"]             = actions.prev_entry,
      ["<up>"]          = actions.prev_entry,
      ["<cr>"]          = actions.select_entry,
      ["o"]             = actions.select_entry,
      ["<2-LeftMouse>"] = actions.select_entry,
      ["<c-b>"]         = actions.scroll_view(-0.25),
      ["<c-f>"]         = actions.scroll_view(0.25),
      ["<tab>"]         = actions.select_next_entry,
      ["<s-tab>"]       = actions.select_prev_entry,
      ["gf"]            = actions.goto_file,
      ["<C-w><C-f>"]    = actions.goto_file_split,
      ["<C-w>gf"]       = actions.goto_file_tab,
      ["<leader>e"]     = actions.focus_files,
      ["<leader>b"]     = actions.toggle_files,
      ["g<C-x>"]        = actions.cycle_layout,
    },
    option_panel = {
      ["<tab>"] = actions.select_entry,
      ["q"]     = actions.close,
    },
  },
})
sindrets commented 1 year ago

@ShiChenCong I'm gonna need more information here:

ShiChenCong commented 1 year ago

Thank you for your patience.

sindrets commented 1 year ago

Hm, it's difficult to tell exactly what could be the problem here. It's possible that the case is exactly as the error message explains: git does not produce any file history for your target file, given the options being used.

Could you perhaps try to run nvim with DEBUG_DIFFVIEW=1 nvim, then reproduce the issue? The log should then contain more detailed information about the dry-run.

You could also try to play around with the options passed to :DiffviewFileHistory. (Documented under "Options" in :h :DiffviewFileHistory)

ShiChenCong commented 1 year ago

DEBUG_DIFFVIEW=1 nvim seems same information.

Current options: [ Top-level path: '~/.config', Flags: '-n256' '--diff-merges=combined' ]
Press ENTER or type command to continue

I tried :'<,'>DiffviewFileHistory, it works. image

tried :DiffviewFileHistory lua/keymaps.lua, it not work, get the same error information

sindrets commented 1 year ago

You forgot to include the new :DiffviewLog content after reproducing the issue while running DEBUG_DIFFVIEW=1 nvim. It could be useful as it shows the exact command used by the dry-run.

ShiChenCong commented 1 year ago
[INFO  二 11/30 21:42:24 2021] ...onfig/nvim/plugged/diffview.nvim/lua/diffview/logger.lua:28: [FileHistory] Completed update for 3 entries successfully (80.930 ms).
[INFO  三 12/ 1 20:51:57 2021] ...onfig/nvim/plugged/diffview.nvim/lua/diffview/logger.lua:28: [FileHistory] Completed update for 37 entries successfully (79.322 ms).
[INFO  Wed Dec 22 12:10:57 2021] ...onfig/nvim/plugged/diffview.nvim/lua/diffview/logger.lua:28: [DiffView] Completed update for 6 files successfully (72.665 ms)
[INFO  Wed Dec 22 12:32:29 2021] ...onfig/nvim/plugged/diffview.nvim/lua/diffview/logger.lua:28: [DiffView] Completed update for 6 files successfully (58.655 ms)
[INFO  Wed Dec 22 13:36:00 2021] ...onfig/nvim/plugged/diffview.nvim/lua/diffview/logger.lua:28: [FileHistory] Completed update for 256 entries successfully (661.910 ms).
[INFO  三 12/22 18:11:26 2021] ...onfig/nvim/plugged/diffview.nvim/lua/diffview/logger.lua:28: [FileHistory] Completed update for 256 entries successfully (612.227 ms).
[INFO  三 12/22 18:21:30 2021] ...onfig/nvim/plugged/diffview.nvim/lua/diffview/logger.lua:28: [FileHistory] Completed update for 256 entries successfully (599.233 ms).
[WARN  三 12/22 18:28:39 2021] ...ig/nvim/plugged/diffview.nvim/lua/diffview/git/utils.lua:568: [git] 'git-show' silently returned nothing!
[WARN  三 12/22 18:28:39 2021] ...onfig/nvim/plugged/diffview.nvim/lua/diffview/logger.lua:56: [job-info] Exit code: 0
[WARN  三 12/22 18:28:39 2021] ...onfig/nvim/plugged/diffview.nvim/lua/diffview/logger.lua:57: [cmd] git 'show' '--format=' '-m' '--first-parent' '--name-status' 'fbbc3542f6a131e50b11acf49f38490de2c6a81b' '--' '.'
[WARN  三 12/22 18:28:39 2021] ...ig/nvim/plugged/diffview.nvim/lua/diffview/git/utils.lua:571: [git] Retrying 2 more time(s).
[INFO  三 12/22 18:28:39 2021] ...ig/nvim/plugged/diffview.nvim/lua/diffview/git/utils.lua:575: [git] Retry successful!
[INFO  三 12/22 18:28:39 2021] ...onfig/nvim/plugged/diffview.nvim/lua/diffview/logger.lua:28: [FileHistory] Completed update for 256 entries successfully (536.378 ms).
[INFO  三 12/22 18:28:50 2021] ...onfig/nvim/plugged/diffview.nvim/lua/diffview/logger.lua:28: [FileHistory] Completed update for 256 entries successfully (924.433 ms).
[INFO  三 12/22 18:50:33 2021] ...onfig/nvim/plugged/diffview.nvim/lua/diffview/logger.lua:28: [FileHistory] Completed update for 256 entries successfully (817.145 ms).
[INFO  三 12/22 19:01:08 2021] ...onfig/nvim/plugged/diffview.nvim/lua/diffview/logger.lua:28: [DiffView] Completed update for 1 files successfully (60.024 ms)
[INFO  五 12/24 21:25:05 2021] ...onfig/nvim/plugged/diffview.nvim/lua/diffview/logger.lua:28: [FileHistory] Completed update for 37 entries successfully (80.268 ms).
[INFO  六 12/25 17:40:52 2021] ...onfig/nvim/plugged/diffview.nvim/lua/diffview/logger.lua:28: [FileHistory] Completed update for 256 entries successfully (458.587 ms).
[INFO  日  1/ 2 16:32:28 2022] ...onfig/nvim/plugged/diffview.nvim/lua/diffview/logger.lua:28: [FileHistory] Completed update for 26 entries successfully (99.780 ms).
[INFO  日  1/ 2 17:19:58 2022] ...onfig/nvim/plugged/diffview.nvim/lua/diffview/logger.lua:28: [FileHistory] Completed update for 26 entries successfully (107.150 ms).
[INFO  三  1/19 22:29:13 2022] ...onfig/nvim/plugged/diffview.nvim/lua/diffview/logger.lua:28: [FileHistory] Completed update for 256 entries successfully (496.032 ms).
[INFO  三  1/19 22:29:19 2022] ...onfig/nvim/plugged/diffview.nvim/lua/diffview/logger.lua:28: [FileHistory] Completed update for 256 entries successfully (487.832 ms).
[INFO  五  3/18 14:14:52 2022] ...onfig/nvim/plugged/diffview.nvim/lua/diffview/logger.lua:28: [FileHistory] Completed update for 18 entries successfully (82.612 ms).
[INFO  一  3/21 14:40:47 2022] ...onfig/nvim/plugged/diffview.nvim/lua/diffview/logger.lua:28: [FileHistory] Completed update for 9 entries successfully (79.104 ms).
[INFO  六  3/26 14:54:34 2022] ...onfig/nvim/plugged/diffview.nvim/lua/diffview/logger.lua:28: [FileHistory] Completed update for 34 entries successfully (81.648 ms).
[INFO  六  3/26 15:34:58 2022] ...onfig/nvim/plugged/diffview.nvim/lua/diffview/logger.lua:28: [FileHistory] Completed update for 34 entries successfully (81.778 ms).
[INFO  六  3/26 15:35:03 2022] ...onfig/nvim/plugged/diffview.nvim/lua/diffview/logger.lua:28: [FileHistory] Completed update for 34 entries successfully (84.525 ms).
[INFO  六  3/26 15:36:19 2022] ...onfig/nvim/plugged/diffview.nvim/lua/diffview/logger.lua:28: [FileHistory] Completed update for 34 entries successfully (83.422 ms).
[INFO  日  4/ 3 21:02:28 2022] ...onfig/nvim/plugged/diffview.nvim/lua/diffview/logger.lua:28: [FileHistory] Completed update for 59 entries successfully (81.728 ms).
[INFO  六  4/23 17:32:29 2022] ...onfig/nvim/plugged/diffview.nvim/lua/diffview/logger.lua:28: [FileHistory] Completed update for 3 entries successfully (77.289 ms).
[INFO  Sun May  8 14:43:48 2022] ...onfig/nvim/plugged/diffview.nvim/lua/diffview/logger.lua:28: [FileHistory] Completed update for 18 entries successfully (78.524 ms).
[INFO  Sun May  8 15:08:10 2022] ...onfig/nvim/plugged/diffview.nvim/lua/diffview/logger.lua:28: [FileHistory] Completed update for 67 entries successfully (81.254 ms).
[INFO  Sun May  8 19:02:19 2022] ...onfig/nvim/plugged/diffview.nvim/lua/diffview/logger.lua:28: [FileHistory] Completed update for 1 entries successfully (127.007 ms).
[INFO  Sat May 14 19:19:13 2022] ...onfig/nvim/plugged/diffview.nvim/lua/diffview/logger.lua:42: [FileHistory] Completed update for 74 entries successfully (79.304 ms).
[INFO  Wed May 25 22:19:26 2022] .../pack/packer/start/diffview.nvim/lua/diffview/logger.lua:42: [FileHistory] Completed update for 5 entries successfully (82.748 ms).
[INFO  Wed May 25 22:20:13 2022] .../pack/packer/start/diffview.nvim/lua/diffview/logger.lua:42: [FileHistory] Completed update for 5 entries successfully (85.946 ms).
[INFO  Sat May 28 22:01:22 2022] ...te/pack/packer/opt/diffview.nvim/lua/diffview/logger.lua:42: [FileHistory] Completed update for 62 entries successfully (151.835 ms).
[INFO  Sat May 28 22:02:21 2022] ...te/pack/packer/opt/diffview.nvim/lua/diffview/logger.lua:42: [FileHistory] Completed update for 256 entries successfully (228.829 ms).
[INFO  Sat May 28 22:04:13 2022] ...te/pack/packer/opt/diffview.nvim/lua/diffview/logger.lua:42: [FileHistory] Completed update for 256 entries successfully (218.131 ms).
[INFO  Sat May 28 22:05:15 2022] ...te/pack/packer/opt/diffview.nvim/lua/diffview/logger.lua:42: [FileHistory] Completed update for 256 entries successfully (217.154 ms).
[INFO  Sat May 28 22:05:32 2022] ...te/pack/packer/opt/diffview.nvim/lua/diffview/logger.lua:42: [FileHistory] Completed update for 256 entries successfully (225.030 ms).
[INFO  Sat May 28 22:05:51 2022] ...te/pack/packer/opt/diffview.nvim/lua/diffview/logger.lua:42: [DiffView] Completed update for 2 files successfully (48.523 ms)
[INFO  Sat May 28 22:08:00 2022] ...te/pack/packer/opt/diffview.nvim/lua/diffview/logger.lua:42: [FileHistory] Completed update for 256 entries successfully (226.447 ms).
[INFO  Sat May 28 22:08:12 2022] ...te/pack/packer/opt/diffview.nvim/lua/diffview/logger.lua:42: [FileHistory] Completed update for 256 entries successfully (149.889 ms).
[INFO  Sat May 28 22:08:20 2022] ...te/pack/packer/opt/diffview.nvim/lua/diffview/logger.lua:42: [DiffView] Completed update for 2 files successfully (48.854 ms)
[INFO  Sat May 28 22:12:22 2022] ...te/pack/packer/opt/diffview.nvim/lua/diffview/logger.lua:42: [FileHistory] Completed update for 256 entries successfully (228.983 ms).
[INFO  Sat May 28 22:12:26 2022] ...te/pack/packer/opt/diffview.nvim/lua/diffview/logger.lua:42: [DiffView] Completed update for 2 files successfully (54.035 ms)
[INFO  Sat May 28 22:14:44 2022] ...te/pack/packer/opt/diffview.nvim/lua/diffview/logger.lua:42: [FileHistory] Completed update for 256 entries successfully (231.092 ms).
[INFO  Sat May 28 22:16:20 2022] ...te/pack/packer/opt/diffview.nvim/lua/diffview/logger.lua:42: [FileHistory] Completed update for 256 entries successfully (221.221 ms).
[INFO  Sat May 28 22:20:08 2022] ...te/pack/packer/opt/diffview.nvim/lua/diffview/logger.lua:42: [DiffView] Completed update for 4 files successfully (57.286 ms)
[INFO  Sat May 28 22:20:49 2022] ...te/pack/packer/opt/diffview.nvim/lua/diffview/logger.lua:42: [FileHistory] Completed update for 256 entries successfully (223.729 ms).
[INFO  Sat May 28 22:20:53 2022] ...te/pack/packer/opt/diffview.nvim/lua/diffview/logger.lua:42: [FileHistory] Completed update for 256 entries successfully (157.286 ms).
[INFO  Sat May 28 22:22:04 2022] ...te/pack/packer/opt/diffview.nvim/lua/diffview/logger.lua:42: [FileHistory] Completed update for 256 entries successfully (223.792 ms).
[INFO  Sat May 28 22:22:15 2022] ...te/pack/packer/opt/diffview.nvim/lua/diffview/logger.lua:42: [FileHistory] Completed update for 256 entries successfully (150.039 ms).
[INFO  Sat May 28 22:23:53 2022] ...te/pack/packer/opt/diffview.nvim/lua/diffview/logger.lua:42: [DiffView] Completed update for 4 files successfully (40.757 ms)
[INFO  Sat May 28 22:24:17 2022] ...te/pack/packer/opt/diffview.nvim/lua/diffview/logger.lua:42: [DiffView] Completed update for 4 files successfully (43.644 ms)
[INFO  Sat May 28 22:25:52 2022] ...te/pack/packer/opt/diffview.nvim/lua/diffview/logger.lua:42: [FileHistory] Completed update for 256 entries successfully (217.445 ms).
[INFO  Sat May 28 22:26:06 2022] ...te/pack/packer/opt/diffview.nvim/lua/diffview/logger.lua:42: [DiffView] Completed update for 4 files successfully (47.360 ms)
[INFO  Sat May 28 22:27:24 2022] ...te/pack/packer/opt/diffview.nvim/lua/diffview/logger.lua:42: [FileHistory] Completed update for 256 entries successfully (223.628 ms).
[INFO  Sat May 28 22:29:30 2022] ...te/pack/packer/opt/diffview.nvim/lua/diffview/logger.lua:42: [FileHistory] Completed update for 2 entries successfully (101.506 ms).
[INFO  Sun May 29 10:21:45 2022] ...te/pack/packer/opt/diffview.nvim/lua/diffview/logger.lua:42: [FileHistory] Completed update for 64 entries successfully (151.175 ms).
[INFO  Sun May 29 10:22:43 2022] ...te/pack/packer/opt/diffview.nvim/lua/diffview/logger.lua:42: [FileHistory] Completed update for 14 entries successfully (77.279 ms).
[INFO  Sun May 29 10:40:30 2022] .../pack/packer/start/diffview.nvim/lua/diffview/logger.lua:42: [FileHistory] Completed update for 2 entries successfully (100.106 ms).
[INFO  Sun May 29 10:40:43 2022] .../pack/packer/start/diffview.nvim/lua/diffview/logger.lua:42: [FileHistory] Completed update for 2 entries successfully (97.474 ms).
[INFO  Sun May 29 10:41:07 2022] .../pack/packer/start/diffview.nvim/lua/diffview/logger.lua:42: [FileHistory] Completed update for 2 entries successfully (99.915 ms).
[INFO  Sun May 29 10:42:11 2022] .../pack/packer/start/diffview.nvim/lua/diffview/logger.lua:42: [FileHistory] Completed update for 8 entries successfully (76.051 ms).
[INFO  Sun May 29 10:43:24 2022] .../pack/packer/start/diffview.nvim/lua/diffview/logger.lua:42: [FileHistory] Completed update for 2 entries successfully (96.440 ms).
[INFO  Sun May 29 10:43:32 2022] .../pack/packer/start/diffview.nvim/lua/diffview/logger.lua:42: [DiffView] Completed update for 6 files successfully (52.379 ms)
[INFO  Sun May 29 10:43:40 2022] .../pack/packer/start/diffview.nvim/lua/diffview/logger.lua:42: [FileHistory] Completed update for 256 entries successfully (225.093 ms).
[INFO  Sun May 29 10:44:19 2022] .../pack/packer/start/diffview.nvim/lua/diffview/logger.lua:42: [FileHistory] Completed update for 2 entries successfully (102.003 ms).
[INFO  Sun May 29 10:44:47 2022] .../pack/packer/start/diffview.nvim/lua/diffview/logger.lua:42: [FileHistory] Completed update for 2 entries successfully (87.528 ms).
[INFO  Sun May 29 10:44:57 2022] .../pack/packer/start/diffview.nvim/lua/diffview/logger.lua:42: [FileHistory] Completed update for 2 entries successfully (97.946 ms).
[INFO  Sun May 29 10:45:02 2022] .../pack/packer/start/diffview.nvim/lua/diffview/logger.lua:42: [FileHistory] Completed update for 2 entries successfully (85.804 ms).
[INFO  Sun May 29 10:45:08 2022] .../pack/packer/start/diffview.nvim/lua/diffview/logger.lua:42: [FileHistory] Completed update for 2 entries successfully (89.623 ms).
[INFO  Sun May 29 10:45:15 2022] .../pack/packer/start/diffview.nvim/lua/diffview/logger.lua:42: [FileHistory] Completed update for 2 entries successfully (85.274 ms).
[INFO  Sun May 29 10:45:26 2022] .../pack/packer/start/diffview.nvim/lua/diffview/logger.lua:42: [FileHistory] Completed update for 2 entries successfully (84.463 ms).
[INFO  Sun May 29 10:46:53 2022] .../pack/packer/start/diffview.nvim/lua/diffview/logger.lua:42: [DiffView] Completed update for 2 files successfully (45.525 ms)
[INFO  Sun May 29 10:46:58 2022] .../pack/packer/start/diffview.nvim/lua/diffview/logger.lua:42: [DiffView] Completed update for 2 files successfully (57.749 ms)
[INFO  Sun May 29 11:14:05 2022] .../pack/packer/start/diffview.nvim/lua/diffview/logger.lua:42: [FileHistory] Completed update for 5 entries successfully (83.627 ms).
[INFO  Sun May 29 11:15:56 2022] .../pack/packer/start/diffview.nvim/lua/diffview/logger.lua:42: [FileHistory] Completed update for 10 entries successfully (97.089 ms).
[INFO  Sun May 29 11:18:09 2022] .../pack/packer/start/diffview.nvim/lua/diffview/logger.lua:42: [FileHistory] Completed update for 3 entries successfully (130.576 ms).
[INFO  Sun May 29 11:18:17 2022] .../pack/packer/start/diffview.nvim/lua/diffview/logger.lua:42: [DiffView] Completed update for 1 files successfully (53.234 ms)
[INFO  Sun May 29 11:22:11 2022] .../pack/packer/start/diffview.nvim/lua/diffview/logger.lua:42: [DiffView] Completed update for 1 files successfully (72.408 ms)
[INFO  Sun May 29 11:23:37 2022] .../pack/packer/start/diffview.nvim/lua/diffview/logger.lua:42: [DiffView] Completed update for 1 files successfully (45.692 ms)
[INFO  Sun May 29 11:25:01 2022] .../pack/packer/start/diffview.nvim/lua/diffview/logger.lua:42: [DiffView] Completed update for 1 files successfully (48.990 ms)
[INFO  Sun May 29 11:25:13 2022] .../pack/packer/start/diffview.nvim/lua/diffview/logger.lua:42: [DiffView] Completed update for 1 files successfully (43.942 ms)
[INFO  Tue Jun  7 22:42:47 2022] .../pack/packer/start/diffview.nvim/lua/diffview/logger.lua:42: [FileHistory] Completed update for 5 entries successfully (166.486 ms).
[INFO  Sun Jun 12 10:31:18 2022] ...te/pack/packer/opt/diffview.nvim/lua/diffview/logger.lua:42: [FileHistory] Completed update for 15 entries successfully (146.204 ms).
[INFO  Tue Jun 14 21:48:39 2022] ...te/pack/packer/opt/diffview.nvim/lua/diffview/logger.lua:42: [FileHistory] Completed update for 18 entries successfully (142.944 ms).
[INFO  Tue Jun 14 21:51:53 2022] ...te/pack/packer/opt/diffview.nvim/lua/diffview/logger.lua:42: [FileHistory] Completed update for 6 entries successfully (88.574 ms).
[INFO  Tue Jun 14 21:55:18 2022] ...te/pack/packer/opt/diffview.nvim/lua/diffview/logger.lua:42: [FileHistory] Completed update for 6 entries successfully (88.212 ms).
[INFO  Tue Jun 14 21:55:20 2022] ...te/pack/packer/opt/diffview.nvim/lua/diffview/logger.lua:42: [FileHistory] Completed update for 6 entries successfully (78.899 ms).
[INFO  Tue Jun 14 21:56:23 2022] ...te/pack/packer/opt/diffview.nvim/lua/diffview/logger.lua:42: [FileHistory] Completed update for 6 entries successfully (99.097 ms).
[INFO  Tue Jun 14 21:59:26 2022] ...te/pack/packer/opt/diffview.nvim/lua/diffview/logger.lua:42: [FileHistory] Completed update for 19 entries successfully (142.726 ms).
[INFO  Tue Jun 14 22:01:07 2022] ...te/pack/packer/opt/diffview.nvim/lua/diffview/logger.lua:42: [FileHistory] Completed update for 19 entries successfully (148.627 ms).
[INFO  Tue Jun 14 22:01:28 2022] ...te/pack/packer/opt/diffview.nvim/lua/diffview/logger.lua:42: [FileHistory] Completed update for 19 entries successfully (144.791 ms).
[INFO  Tue Jun 14 22:01:38 2022] ...te/pack/packer/opt/diffview.nvim/lua/diffview/logger.lua:42: [FileHistory] Completed update for 6 entries successfully (88.264 ms).
[INFO  Tue Jun 14 22:02:32 2022] ...te/pack/packer/opt/diffview.nvim/lua/diffview/logger.lua:42: [FileHistory] Completed update for 6 entries successfully (84.491 ms).
[INFO  Tue Jun 14 22:03:18 2022] ...te/pack/packer/opt/diffview.nvim/lua/diffview/logger.lua:42: [FileHistory] Completed update for 6 entries successfully (87.354 ms).
[INFO  Tue Jun 14 22:04:03 2022] ...te/pack/packer/opt/diffview.nvim/lua/diffview/logger.lua:42: [FileHistory] Completed update for 6 entries successfully (81.830 ms).
[INFO  Tue Jun 14 22:04:38 2022] ...te/pack/packer/opt/diffview.nvim/lua/diffview/logger.lua:42: [FileHistory] Completed update for 6 entries successfully (85.588 ms).
[INFO  Tue Jun 14 22:05:08 2022] ...te/pack/packer/opt/diffview.nvim/lua/diffview/logger.lua:42: [FileHistory] Completed update for 6 entries successfully (82.224 ms).
[INFO  Tue Jun 14 22:05:23 2022] ...te/pack/packer/opt/diffview.nvim/lua/diffview/logger.lua:42: [FileHistory] Completed update for 6 entries successfully (83.199 ms).
[INFO  Tue Jun 14 22:06:20 2022] ...te/pack/packer/opt/diffview.nvim/lua/diffview/logger.lua:42: [FileHistory] Completed update for 6 entries successfully (100.431 ms).
[INFO  Tue Jun 14 22:07:35 2022] ...te/pack/packer/opt/diffview.nvim/lua/diffview/logger.lua:42: [FileHistory] Completed update for 6 entries successfully (88.515 ms).
[INFO  Tue Jun 14 22:08:07 2022] ...te/pack/packer/opt/diffview.nvim/lua/diffview/logger.lua:42: [FileHistory] Completed update for 6 entries successfully (86.383 ms).
[INFO  Tue Jun 14 22:09:03 2022] ...te/pack/packer/opt/diffview.nvim/lua/diffview/logger.lua:42: [FileHistory] Completed update for 6 entries successfully (86.853 ms).
[INFO  Tue Jun 14 22:09:18 2022] ...te/pack/packer/opt/diffview.nvim/lua/diffview/logger.lua:42: [FileHistory] Completed update for 6 entries successfully (83.793 ms).
[INFO  Tue Jun 14 22:10:03 2022] ...te/pack/packer/opt/diffview.nvim/lua/diffview/logger.lua:42: [FileHistory] Completed update for 6 entries successfully (86.931 ms).
[INFO  Tue Jun 14 22:11:08 2022] ...te/pack/packer/opt/diffview.nvim/lua/diffview/logger.lua:42: [FileHistory] Completed update for 6 entries successfully (84.967 ms).
[INFO  Tue Jun 14 22:11:22 2022] ...te/pack/packer/opt/diffview.nvim/lua/diffview/logger.lua:42: [FileHistory] Completed update for 6 entries successfully (86.671 ms).
[INFO  Tue Jun 14 22:13:45 2022] ...te/pack/packer/opt/diffview.nvim/lua/diffview/logger.lua:42: [FileHistory] Completed update for 6 entries successfully (91.026 ms).
[INFO  Tue Jun 14 22:16:24 2022] ...te/pack/packer/opt/diffview.nvim/lua/diffview/logger.lua:42: [FileHistory] Completed update for 6 entries successfully (83.127 ms).
[INFO  Tue Jun 14 22:21:26 2022] ...te/pack/packer/opt/diffview.nvim/lua/diffview/logger.lua:42: [FileHistory] Completed update for 6 entries successfully (85.472 ms).
[INFO  Tue Jun 14 22:25:49 2022] ...te/pack/packer/opt/diffview.nvim/lua/diffview/logger.lua:42: [FileHistory] Completed update for 6 entries successfully (89.151 ms).
[INFO  Tue Jun 14 22:32:09 2022] ...te/pack/packer/opt/diffview.nvim/lua/diffview/logger.lua:42: [FileHistory] Completed update for 6 entries successfully (83.488 ms).
[INFO  Tue Jun 14 22:33:05 2022] ...te/pack/packer/opt/diffview.nvim/lua/diffview/logger.lua:42: [FileHistory] Completed update for 6 entries successfully (84.386 ms).
[INFO  Tue Jun 14 22:33:53 2022] ...te/pack/packer/opt/diffview.nvim/lua/diffview/logger.lua:42: [FileHistory] Completed update for 6 entries successfully (79.872 ms).
[INFO  Tue Jun 14 22:34:34 2022] ...te/pack/packer/opt/diffview.nvim/lua/diffview/logger.lua:42: [FileHistory] Completed update for 6 entries successfully (79.025 ms).
[INFO  Tue Jun 14 22:37:01 2022] ...te/pack/packer/opt/diffview.nvim/lua/diffview/logger.lua:42: [FileHistory] Completed update for 6 entries successfully (84.388 ms).
[INFO  Tue Jun 14 22:40:38 2022] ...te/pack/packer/opt/diffview.nvim/lua/diffview/logger.lua:42: [FileHistory] Completed update for 6 entries successfully (83.292 ms).
[INFO  Tue Jun 14 22:42:57 2022] ...te/pack/packer/opt/diffview.nvim/lua/diffview/logger.lua:42: [FileHistory] Completed update for 6 entries successfully (84.021 ms).
[INFO  Tue Jun 14 22:43:21 2022] ...te/pack/packer/opt/diffview.nvim/lua/diffview/logger.lua:42: [FileHistory] Completed update for 6 entries successfully (84.128 ms).
[INFO  Tue Jun 14 22:43:40 2022] ...te/pack/packer/opt/diffview.nvim/lua/diffview/logger.lua:42: [FileHistory] Completed update for 6 entries successfully (85.873 ms).
[INFO  Tue Jun 14 22:43:51 2022] ...te/pack/packer/opt/diffview.nvim/lua/diffview/logger.lua:42: [FileHistory] Completed update for 6 entries successfully (83.388 ms).
[INFO  Tue Jun 14 22:44:15 2022] ...te/pack/packer/opt/diffview.nvim/lua/diffview/logger.lua:42: [FileHistory] Completed update for 6 entries successfully (84.040 ms).
[INFO  Tue Jun 14 22:44:37 2022] ...te/pack/packer/opt/diffview.nvim/lua/diffview/logger.lua:42: [FileHistory] Completed update for 6 entries successfully (81.985 ms).
[INFO  Tue Jun 14 22:45:07 2022] ...te/pack/packer/opt/diffview.nvim/lua/diffview/logger.lua:42: [FileHistory] Completed update for 6 entries successfully (80.277 ms).
[INFO  Tue Jun 14 22:45:21 2022] ...te/pack/packer/opt/diffview.nvim/lua/diffview/logger.lua:42: [FileHistory] Completed update for 6 entries successfully (80.502 ms).
[INFO  Tue Jun 14 22:45:41 2022] ...te/pack/packer/opt/diffview.nvim/lua/diffview/logger.lua:42: [FileHistory] Completed update for 6 entries successfully (87.719 ms).
[INFO  Tue Jun 14 22:47:00 2022] ...te/pack/packer/opt/diffview.nvim/lua/diffview/logger.lua:42: [FileHistory] Completed update for 6 entries successfully (85.640 ms).
[INFO  Tue Jun 14 22:47:44 2022] ...te/pack/packer/opt/diffview.nvim/lua/diffview/logger.lua:42: [FileHistory] Completed update for 6 entries successfully (84.047 ms).
[INFO  Tue Jun 14 22:48:00 2022] ...te/pack/packer/opt/diffview.nvim/lua/diffview/logger.lua:42: [FileHistory] Completed update for 6 entries successfully (84.740 ms).
[INFO  Tue Jun 14 22:48:28 2022] ...te/pack/packer/opt/diffview.nvim/lua/diffview/logger.lua:42: [FileHistory] Completed update for 6 entries successfully (82.806 ms).
[INFO  Tue Jun 14 22:49:46 2022] ...te/pack/packer/opt/diffview.nvim/lua/diffview/logger.lua:42: [FileHistory] Completed update for 6 entries successfully (88.511 ms).
[INFO  Sat Jun 18 07:03:28 2022] ...te/pack/packer/opt/diffview.nvim/lua/diffview/logger.lua:42: [FileHistory] Completed update for 13 entries successfully (339.901 ms).
[INFO  Sun Jun 19 08:23:49 2022] ...te/pack/packer/opt/diffview.nvim/lua/diffview/logger.lua:42: [FileHistory] Completed update for 5 entries successfully (93.264 ms).
[INFO  Sun Jun 19 08:30:35 2022] ...te/pack/packer/opt/diffview.nvim/lua/diffview/logger.lua:42: [FileHistory] Completed update for 5 entries successfully (96.698 ms).
[INFO  Sun Jun 19 08:32:59 2022] ...te/pack/packer/opt/diffview.nvim/lua/diffview/logger.lua:42: [FileHistory] Completed update for 5 entries successfully (97.665 ms).
[INFO  Sun Jun 19 08:48:56 2022] ...te/pack/packer/opt/diffview.nvim/lua/diffview/logger.lua:42: [FileHistory] Completed update for 5 entries successfully (99.095 ms).
[INFO  Sat Jun 25 20:59:27 2022] ...te/pack/packer/opt/diffview.nvim/lua/diffview/logger.lua:42: [FileHistory] Completed update for 76 entries successfully (220.984 ms).
[INFO  Sun Jun 26 21:05:47 2022] .../site/pack/packer/opt/diffview.nvim/lua/diffview/lib.lua:130: [command call] :DiffviewFileHistory %
[INFO  Sun Jun 26 21:05:48 2022] ...te/pack/packer/opt/diffview.nvim/lua/diffview/logger.lua:42: [FileHistory] Completed update for 32 entries successfully (221.556 ms).
[INFO  Sun Jul  3 16:38:09 2022] .../site/pack/packer/opt/diffview.nvim/lua/diffview/lib.lua:40: [command call] :DiffviewOpen 
[INFO  Sun Jul  3 16:38:10 2022] ...te/pack/packer/opt/diffview.nvim/lua/diffview/logger.lua:42: [DiffView] Completed update for 1 files successfully (53.574 ms)
[INFO  Thu Jul 14 22:02:43 2022] .../site/pack/packer/opt/diffview.nvim/lua/diffview/lib.lua:132: [command call] :DiffviewFileHistory %
[INFO  Thu Jul 14 22:02:43 2022] ...te/pack/packer/opt/diffview.nvim/lua/diffview/logger.lua:42: [FileHistory] Completed update for 19 entries successfully (215.599 ms).
[INFO  Mon Aug  1 08:45:53 2022] .../site/pack/packer/opt/diffview.nvim/lua/diffview/lib.lua:132: [command call] :DiffviewFileHistory %
[INFO  Mon Aug  1 08:45:53 2022] ...te/pack/packer/opt/diffview.nvim/lua/diffview/logger.lua:42: [FileHistory] Completed update for 35 entries successfully (148.594 ms).
[INFO  Thu Aug 25 22:22:53 2022] .../site/pack/packer/opt/diffview.nvim/lua/diffview/lib.lua:147: [command call] :DiffviewFileHistory %
[INFO  Thu Aug 25 22:22:54 2022] ...te/pack/packer/opt/diffview.nvim/lua/diffview/logger.lua:44: [FileHistory] Completed update for 44 entries successfully (214.299 ms).
[INFO  Sat Sep  3 10:14:56 2022] .../site/pack/packer/opt/diffview.nvim/lua/diffview/lib.lua:147: [command call] :DiffviewFileHistory %
[INFO  Sat Sep  3 10:14:56 2022] ...te/pack/packer/opt/diffview.nvim/lua/diffview/logger.lua:44: [FileHistory] Completed update for 47 entries successfully (279.628 ms).
[INFO  Sat Sep  3 10:17:41 2022] .../site/pack/packer/opt/diffview.nvim/lua/diffview/lib.lua:147: [command call] :DiffviewFileHistory %
[INFO  Sat Sep  3 10:17:41 2022] ...te/pack/packer/opt/diffview.nvim/lua/diffview/logger.lua:44: [FileHistory] Completed update for 47 entries successfully (214.963 ms).
[INFO  Sat Sep  3 10:17:53 2022] .../site/pack/packer/opt/diffview.nvim/lua/diffview/lib.lua:147: [command call] :DiffviewFileHistory %
[INFO  Sat Sep  3 10:17:53 2022] ...te/pack/packer/opt/diffview.nvim/lua/diffview/logger.lua:44: [FileHistory] Completed update for 91 entries successfully (155.375 ms).
[INFO  Sat Sep 24 14:31:37 2022] .../site/pack/packer/opt/diffview.nvim/lua/diffview/lib.lua:140: [command call] :DiffviewFileHistory %
[INFO  Sat Sep 24 14:31:38 2022] ...te/pack/packer/opt/diffview.nvim/lua/diffview/logger.lua:44: [git.utils>incremental_fh_data()] [job-info] Exit code: 0
[INFO  Sat Sep 24 14:31:38 2022] ...te/pack/packer/opt/diffview.nvim/lua/diffview/logger.lua:44: [git.utils>incremental_fh_data()]      [cmd] git 'log' '--pretty=format:%x00%n%H %P%n%an%n%ad%n%ar%n  %s' '--date=raw' '--name-status' '-n256' '--diff-merges=combined' '--' 'nvim/lua/conf/defx.lua'
[INFO  Sat Sep 24 14:31:38 2022] ...te/pack/packer/opt/diffview.nvim/lua/diffview/logger.lua:44: [git.utils>incremental_fh_data()]      [cwd] /Users/shichencong/.config
[INFO  Sat Sep 24 14:31:38 2022] ...te/pack/packer/opt/diffview.nvim/lua/diffview/logger.lua:44: [git.utils>incremental_fh_data()] [job-info] Exit code: 0
[INFO  Sat Sep 24 14:31:38 2022] ...te/pack/packer/opt/diffview.nvim/lua/diffview/logger.lua:44: [git.utils>incremental_fh_data()]      [cmd] git 'log' '--pretty=format:%x00' '--date=raw' '--numstat' '-n256' '--diff-merges=combined' '--' 'nvim/lua/conf/defx.lua'
[INFO  Sat Sep 24 14:31:38 2022] ...te/pack/packer/opt/diffview.nvim/lua/diffview/logger.lua:44: [git.utils>incremental_fh_data()]      [cwd] /Users/shichencong/.config
[INFO  Sat Sep 24 14:31:38 2022] ...te/pack/packer/opt/diffview.nvim/lua/diffview/logger.lua:44: [FileHistory] Completed update for 3 entries successfully (240.677 ms).
[INFO  Fri Nov  4 19:39:44 2022] .../site/pack/packer/opt/diffview.nvim/lua/diffview/lib.lua:140: [command call] :DiffviewFileHistory %
[INFO  Fri Nov  4 19:39:45 2022] ...te/pack/packer/opt/diffview.nvim/lua/diffview/logger.lua:44: [git.utils>incremental_fh_data()] [job-info] Exit code: 0
[INFO  Fri Nov  4 19:39:45 2022] ...te/pack/packer/opt/diffview.nvim/lua/diffview/logger.lua:44: [git.utils>incremental_fh_data()]      [cmd] git 'log' '--pretty=format:%x00%n%H %P%n%an%n%ad%n%ar%n  %D%n  %s' '--date=raw' '--name-status' '-n256' '--diff-merges=combined' '--' '/Users/shichencong/workplace/dna-frontend/src/router/index.tsx'
[INFO  Fri Nov  4 19:39:45 2022] ...te/pack/packer/opt/diffview.nvim/lua/diffview/logger.lua:44: [git.utils>incremental_fh_data()]      [cwd] /Users/shichencong/workplace/dna-frontend
[INFO  Fri Nov  4 19:39:45 2022] ...te/pack/packer/opt/diffview.nvim/lua/diffview/logger.lua:44: [git.utils>incremental_fh_data()] [job-info] Exit code: 0
[INFO  Fri Nov  4 19:39:45 2022] ...te/pack/packer/opt/diffview.nvim/lua/diffview/logger.lua:44: [git.utils>incremental_fh_data()]      [cmd] git 'log' '--pretty=format:%x00' '--date=raw' '--numstat' '-n256' '--diff-merges=combined' '--' '/Users/shichencong/workplace/dna-frontend/src/router/index.tsx'
[INFO  Fri Nov  4 19:39:45 2022] ...te/pack/packer/opt/diffview.nvim/lua/diffview/logger.lua:44: [git.utils>incremental_fh_data()]      [cwd] /Users/shichencong/workplace/dna-frontend
[INFO  Fri Nov  4 19:39:45 2022] ...te/pack/packer/opt/diffview.nvim/lua/diffview/logger.lua:44: [FileHistory] Completed update for 16 entries successfully (120.154 ms).
[INFO  Fri Nov  4 19:42:33 2022] .../site/pack/packer/opt/diffview.nvim/lua/diffview/lib.lua:140: [command call] :DiffviewFileHistory %
[INFO  Fri Nov  4 19:42:33 2022] ...te/pack/packer/opt/diffview.nvim/lua/diffview/logger.lua:44: [git.utils>incremental_fh_data()] [job-info] Exit code: 0
[INFO  Fri Nov  4 19:42:33 2022] ...te/pack/packer/opt/diffview.nvim/lua/diffview/logger.lua:44: [git.utils>incremental_fh_data()]      [cmd] git 'log' '--pretty=format:%x00%n%H %P%n%an%n%ad%n%ar%n  %D%n  %s' '--date=raw' '--name-status' '-n256' '--diff-merges=combined' '--' '/Users/shichencong/workplace/dna-frontend/src/router/index.tsx'
[INFO  Fri Nov  4 19:42:33 2022] ...te/pack/packer/opt/diffview.nvim/lua/diffview/logger.lua:44: [git.utils>incremental_fh_data()]      [cwd] /Users/shichencong/workplace/dna-frontend
[INFO  Fri Nov  4 19:42:33 2022] ...te/pack/packer/opt/diffview.nvim/lua/diffview/logger.lua:44: [git.utils>incremental_fh_data()] [job-info] Exit code: 0
[INFO  Fri Nov  4 19:42:33 2022] ...te/pack/packer/opt/diffview.nvim/lua/diffview/logger.lua:44: [git.utils>incremental_fh_data()]      [cmd] git 'log' '--pretty=format:%x00' '--date=raw' '--numstat' '-n256' '--diff-merges=combined' '--' '/Users/shichencong/workplace/dna-frontend/src/router/index.tsx'
[INFO  Fri Nov  4 19:42:33 2022] ...te/pack/packer/opt/diffview.nvim/lua/diffview/logger.lua:44: [git.utils>incremental_fh_data()]      [cwd] /Users/shichencong/workplace/dna-frontend
[INFO  Fri Nov  4 19:42:33 2022] ...te/pack/packer/opt/diffview.nvim/lua/diffview/logger.lua:44: [FileHistory] Completed update for 16 entries successfully (115.338 ms).
[INFO  Sun Nov 13 16:05:08 2022] .../site/pack/packer/opt/diffview.nvim/lua/diffview/lib.lua:79: [command call] :DiffviewFileHistory %
[INFO  Sun Nov 13 16:05:12 2022] .../site/pack/packer/opt/diffview.nvim/lua/diffview/lib.lua:79: [command call] :DiffviewFileHistory %
[INFO  Sun Nov 13 16:05:22 2022] .../site/pack/packer/opt/diffview.nvim/lua/diffview/lib.lua:79: [command call] :DiffviewFileHistory %
[INFO  Sun Nov 13 16:05:31 2022] .../site/pack/packer/opt/diffview.nvim/lua/diffview/lib.lua:79: [command call] :DiffviewFileHistory %
[INFO  Sun Nov 13 16:07:19 2022] .../site/pack/packer/opt/diffview.nvim/lua/diffview/lib.lua:79: [command call] :DiffviewFileHistory %
[INFO  Sun Nov 13 16:07:25 2022] .../site/pack/packer/opt/diffview.nvim/lua/diffview/lib.lua:79: [command call] :DiffviewFileHistory %
[INFO  Sun Nov 13 16:07:25 2022] ...te/pack/packer/opt/diffview.nvim/lua/diffview/logger.lua:44: [GitAdapter>incremental_fh_data()] [job-info] Exit code: 0
[INFO  Sun Nov 13 16:07:25 2022] ...te/pack/packer/opt/diffview.nvim/lua/diffview/logger.lua:44: [GitAdapter>incremental_fh_data()]      [cmd] git 'log' '--pretty=format:%x00%n%H %P%n%an%n%ad%n%ar%n  %D%n  %s' '--date=raw' '--name-status' '-n256' '--diff-merges=combined' '--' 'src/containers/rear/schedule/components/table/index.tsx'
[INFO  Sun Nov 13 16:07:25 2022] ...te/pack/packer/opt/diffview.nvim/lua/diffview/logger.lua:44: [GitAdapter>incremental_fh_data()]      [cwd] /Users/shichencong/workplace/dna-frontend
[INFO  Sun Nov 13 16:07:25 2022] ...te/pack/packer/opt/diffview.nvim/lua/diffview/logger.lua:44: [GitAdapter>incremental_fh_data()] [job-info] Exit code: 0
[INFO  Sun Nov 13 16:07:25 2022] ...te/pack/packer/opt/diffview.nvim/lua/diffview/logger.lua:44: [GitAdapter>incremental_fh_data()]      [cmd] git 'log' '--pretty=format:%x00' '--date=raw' '--numstat' '-n256' '--diff-merges=combined' '--' 'src/containers/rear/schedule/components/table/index.tsx'
[INFO  Sun Nov 13 16:07:25 2022] ...te/pack/packer/opt/diffview.nvim/lua/diffview/logger.lua:44: [GitAdapter>incremental_fh_data()]      [cwd] /Users/shichencong/workplace/dna-frontend
[INFO  Sun Nov 13 16:07:26 2022] ...te/pack/packer/opt/diffview.nvim/lua/diffview/logger.lua:44: [FileHistory] Completed update for 39 entries successfully (128.604 ms).
[INFO  Thu Nov 17 21:44:17 2022] .../site/pack/packer/opt/diffview.nvim/lua/diffview/lib.lua:79: [command call] :DiffviewFileHistory %
[INFO  Thu Nov 17 21:44:17 2022] ...te/pack/packer/opt/diffview.nvim/lua/diffview/logger.lua:44: [GitAdapter>incremental_fh_data()] [job-info] Exit code: 0
[INFO  Thu Nov 17 21:44:17 2022] ...te/pack/packer/opt/diffview.nvim/lua/diffview/logger.lua:44: [GitAdapter>incremental_fh_data()]      [cmd] git 'log' '--pretty=format:%x00%n%H %P%n%an%n%ad%n%ar%n  %D%n  %s' '--date=raw' '--name-status' '-n256' '--diff-merges=combined' '--' 'src/containers/rear/schedule/components/table/index.tsx'
[INFO  Thu Nov 17 21:44:17 2022] ...te/pack/packer/opt/diffview.nvim/lua/diffview/logger.lua:44: [GitAdapter>incremental_fh_data()]      [cwd] /Users/shichencong/workplace/dna-frontend
[INFO  Thu Nov 17 21:44:17 2022] ...te/pack/packer/opt/diffview.nvim/lua/diffview/logger.lua:44: [GitAdapter>incremental_fh_data()] [job-info] Exit code: 0
[INFO  Thu Nov 17 21:44:17 2022] ...te/pack/packer/opt/diffview.nvim/lua/diffview/logger.lua:44: [GitAdapter>incremental_fh_data()]      [cmd] git 'log' '--pretty=format:%x00' '--date=raw' '--numstat' '-n256' '--diff-merges=combined' '--' 'src/containers/rear/schedule/components/table/index.tsx'
[INFO  Thu Nov 17 21:44:17 2022] ...te/pack/packer/opt/diffview.nvim/lua/diffview/logger.lua:44: [GitAdapter>incremental_fh_data()]      [cwd] /Users/shichencong/workplace/dna-frontend
[INFO  Thu Nov 17 21:44:17 2022] ...te/pack/packer/opt/diffview.nvim/lua/diffview/logger.lua:44: [FileHistory] Completed update for 39 entries successfully (102.048 ms).
[INFO  Thu Nov 17 21:44:28 2022] .../site/pack/packer/opt/diffview.nvim/lua/diffview/lib.lua:79: [command call] :DiffviewFileHistory %
[INFO  Thu Nov 17 21:48:02 2022] .../site/pack/packer/opt/diffview.nvim/lua/diffview/lib.lua:79: [command call] :DiffviewFileHistory %
[INFO  Thu Nov 17 22:46:03 2022] .../site/pack/packer/opt/diffview.nvim/lua/diffview/lib.lua:79: [command call] :DiffviewFileHistory %
[DEBUG Thu Nov 17 22:46:27 2022] ...te/pack/packer/opt/diffview.nvim/lua/diffview/logger.lua:44: Found git top-level: "/Users/shichencong/.config"
[DEBUG Thu Nov 17 22:46:27 2022] ...te/pack/packer/opt/diffview.nvim/lua/diffview/logger.lua:44: [GitAdapter.file_history_dry_run()] [job-info] Exit code: 0
[DEBUG Thu Nov 17 22:46:27 2022] ...te/pack/packer/opt/diffview.nvim/lua/diffview/logger.lua:44: [GitAdapter.file_history_dry_run()]      [cmd] git 'log' '--pretty=format:%H' '--name-status' '-n1' '--diff-merges=combined' '--' 'nvim/nvim/lua/keymaps.lua'
[DEBUG Thu Nov 17 22:46:27 2022] ...te/pack/packer/opt/diffview.nvim/lua/diffview/logger.lua:44: [GitAdapter.file_history_dry_run()]      [cwd] /Users/shichencong/.config
[DEBUG Thu Nov 17 22:46:27 2022] ...te/pack/packer/opt/diffview.nvim/lua/diffview/logger.lua:44: [GitAdapter.file_history_dry_run()] Dry run failed.
[INFO  Thu Nov 17 22:47:28 2022] .../site/pack/packer/opt/diffview.nvim/lua/diffview/lib.lua:79: [command call] :DiffviewFileHistory %
[DEBUG Thu Nov 17 22:48:09 2022] ...te/pack/packer/opt/diffview.nvim/lua/diffview/logger.lua:44: Found git top-level: "/Users/shichencong/.config"
[DEBUG Thu Nov 17 22:48:09 2022] ...te/pack/packer/opt/diffview.nvim/lua/diffview/logger.lua:44: [GitAdapter.file_history_dry_run()] [job-info] Exit code: 0
[DEBUG Thu Nov 17 22:48:09 2022] ...te/pack/packer/opt/diffview.nvim/lua/diffview/logger.lua:44: [GitAdapter.file_history_dry_run()]      [cmd] git 'log' '--pretty=format:%H' '--name-status' '-n1' '--diff-merges=combined' '--' 'nvim/nvim/lua/keymaps.lua'
[DEBUG Thu Nov 17 22:48:09 2022] ...te/pack/packer/opt/diffview.nvim/lua/diffview/logger.lua:44: [GitAdapter.file_history_dry_run()]      [cwd] /Users/shichencong/.config
[DEBUG Thu Nov 17 22:48:09 2022] ...te/pack/packer/opt/diffview.nvim/lua/diffview/logger.lua:44: [GitAdapter.file_history_dry_run()] Dry run failed.
[INFO  Thu Nov 17 22:48:12 2022] .../site/pack/packer/opt/diffview.nvim/lua/diffview/lib.lua:79: [command call] :DiffviewFileHistory 
[INFO  Thu Nov 17 22:48:13 2022] ...te/pack/packer/opt/diffview.nvim/lua/diffview/logger.lua:44: [GitAdapter>incremental_fh_data()] [job-info] Exit code: 0
[INFO  Thu Nov 17 22:48:13 2022] ...te/pack/packer/opt/diffview.nvim/lua/diffview/logger.lua:44: [GitAdapter>incremental_fh_data()]      [cmd] git 'log' '--pretty=format:%x00%n%H %P%n%an%n%ad%n%ar%n  %D%n  %s' '--date=raw' '--name-status' '-n256' '--diff-merges=first-parent' '--'
[INFO  Thu Nov 17 22:48:13 2022] ...te/pack/packer/opt/diffview.nvim/lua/diffview/logger.lua:44: [GitAdapter>incremental_fh_data()]      [cwd] /Users/shichencong/.config
[INFO  Thu Nov 17 22:48:13 2022] ...te/pack/packer/opt/diffview.nvim/lua/diffview/logger.lua:44: [GitAdapter>incremental_fh_data()] [job-info] Exit code: 0
[INFO  Thu Nov 17 22:48:13 2022] ...te/pack/packer/opt/diffview.nvim/lua/diffview/logger.lua:44: [GitAdapter>incremental_fh_data()]      [cmd] git 'log' '--pretty=format:%x00' '--date=raw' '--numstat' '-n256' '--diff-merges=first-parent' '--'
[INFO  Thu Nov 17 22:48:13 2022] ...te/pack/packer/opt/diffview.nvim/lua/diffview/logger.lua:44: [GitAdapter>incremental_fh_data()]      [cwd] /Users/shichencong/.config
[INFO  Thu Nov 17 22:48:13 2022] ...te/pack/packer/opt/diffview.nvim/lua/diffview/logger.lua:44: [FileHistory] Completed update for 256 entries successfully (214.981 ms).
[INFO  Thu Nov 17 22:49:03 2022] .../site/pack/packer/opt/diffview.nvim/lua/diffview/lib.lua:79: [command call] :DiffviewFileHistory 
[INFO  Thu Nov 17 22:49:03 2022] ...te/pack/packer/opt/diffview.nvim/lua/diffview/logger.lua:44: [GitAdapter>incremental_line_trace_data()] [job-info] Exit code: 0
[INFO  Thu Nov 17 22:49:03 2022] ...te/pack/packer/opt/diffview.nvim/lua/diffview/logger.lua:44: [GitAdapter>incremental_line_trace_data()]      [cmd] git '-P' 'log' '--color=never' '--no-ext-diff' '--pretty=format:%x00%n%H %P%n%an%n%ad%n%ar%n  %D%n  %s' '--date=raw' '-L226,233:nvim/lua/keymaps.lua' '-n256' '--diff-merges=combined' '--'
[INFO  Thu Nov 17 22:49:03 2022] ...te/pack/packer/opt/diffview.nvim/lua/diffview/logger.lua:44: [GitAdapter>incremental_line_trace_data()]      [cwd] /Users/shichencong/.config
[INFO  Thu Nov 17 22:49:03 2022] ...te/pack/packer/opt/diffview.nvim/lua/diffview/logger.lua:44: [FileHistory] Completed update for 7 entries successfully (211.168 ms).
[INFO  Thu Nov 17 22:50:08 2022] .../site/pack/packer/opt/diffview.nvim/lua/diffview/lib.lua:79: [command call] :DiffviewFileHistory lua/keymaps.lua
[INFO  Thu Nov 17 22:50:49 2022] .../site/pack/packer/opt/diffview.nvim/lua/diffview/lib.lua:79: [command call] :DiffviewFileHistory 
[INFO  Thu Nov 17 22:50:49 2022] ...te/pack/packer/opt/diffview.nvim/lua/diffview/logger.lua:44: [GitAdapter>incremental_line_trace_data()] [job-info] Exit code: 0
[INFO  Thu Nov 17 22:50:49 2022] ...te/pack/packer/opt/diffview.nvim/lua/diffview/logger.lua:44: [GitAdapter>incremental_line_trace_data()]      [cmd] git '-P' 'log' '--color=never' '--no-ext-diff' '--pretty=format:%x00%n%H %P%n%an%n%ad%n%ar%n  %D%n  %s' '--date=raw' '-L1,238:nvim/lua/keymaps.lua' '-n256' '--diff-merges=combined' '--'
[INFO  Thu Nov 17 22:50:49 2022] ...te/pack/packer/opt/diffview.nvim/lua/diffview/logger.lua:44: [GitAdapter>incremental_line_trace_data()]      [cwd] /Users/shichencong/.config
[INFO  Thu Nov 17 22:50:49 2022] ...te/pack/packer/opt/diffview.nvim/lua/diffview/logger.lua:44: [FileHistory] Completed update for 108 entries successfully (159.187 ms).
[INFO  Thu Nov 17 22:51:46 2022] .../site/pack/packer/opt/diffview.nvim/lua/diffview/lib.lua:79: [command call] :DiffviewFileHistory lua/keymaps.lua
[INFO  Thu Nov 17 23:07:15 2022] .../site/pack/packer/opt/diffview.nvim/lua/diffview/lib.lua:79: [command call] :DiffviewFileHistory %
[DEBUG Thu Nov 17 23:07:16 2022] ...te/pack/packer/opt/diffview.nvim/lua/diffview/logger.lua:44: Found git top-level: "/Users/shichencong/.config"
[DEBUG Thu Nov 17 23:07:16 2022] ...te/pack/packer/opt/diffview.nvim/lua/diffview/logger.lua:44: [GitAdapter.file_history_dry_run()] [job-info] Exit code: 0
[DEBUG Thu Nov 17 23:07:16 2022] ...te/pack/packer/opt/diffview.nvim/lua/diffview/logger.lua:44: [GitAdapter.file_history_dry_run()]      [cmd] git 'log' '--pretty=format:%H' '--name-status' '-n1' '--diff-merges=combined' '--' 'nvim/nvim/lua/keymaps.lua'
[DEBUG Thu Nov 17 23:07:16 2022] ...te/pack/packer/opt/diffview.nvim/lua/diffview/logger.lua:44: [GitAdapter.file_history_dry_run()]      [cwd] /Users/shichencong/.config
[DEBUG Thu Nov 17 23:07:16 2022] ...te/pack/packer/opt/diffview.nvim/lua/diffview/logger.lua:44: [GitAdapter.file_history_dry_run()] Dry run failed.
sindrets commented 1 year ago

@ShiChenCong Thank you for your cooperation! I was able to figure out the problem with the last log output you provided. It should be fixed now in one of the latest commits, but please let me know if you encounter any more problems.

ShiChenCong commented 1 year ago

It works know! Thank you for the work, sindrets.