1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-01-24 05:20:04 +08:00
SpaceVim/bundle/git.vim/lua/git/command/checkout.lua
2023-08-05 22:31:52 +08:00

28 lines
644 B
Lua

local M = {}
local job = require('spacevim.api.job')
local nt = require('spacevim.api.notify')
local log = require('git.log')
local branch = require('git.command.branch')
local function on_exit(id, code, single)
log.debug('git-checkout exit code:' .. code .. ' single:' .. single)
if code == 0 and single == 0 then
vim.cmd('silent! checktime')
branch.detect()
nt.notify('checkout done.')
else
nt.notify('checkout failed.', 'WarningMsg')
end
end
function M.run(argv)
local cmd = { 'git', 'checkout' }
for _, v in ipairs(argv) do
table.insert(cmd, v)
end
job.start(cmd, { on_exit = on_exit })
end
return M