1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2024-11-26 09:00:57 +02:00

use porcelain git rather than go-git for reset --hard HEAD because go-git takes over 5 seconds

This commit is contained in:
Jesse Duffield 2018-12-05 19:49:07 +11:00
parent 1a6a69a8f1
commit 66512ca253

View File

@ -208,9 +208,9 @@ func includesInt(list []int, a int) bool {
return false
}
// ResetHard does the equivalent of `git reset --hard HEAD`
// ResetHard clears the working tree to match HEAD
func (c *GitCommand) ResetHard() error {
return c.Worktree.Reset(&gogit.ResetOptions{Mode: gogit.HardReset})
return c.OSCommand.RunCommand("git reset --hard HEAD")
}
// UpstreamDifferenceCount checks how many pushables/pullables there are for the