mirror of
https://github.com/jesseduffield/lazygit.git
synced 2025-05-12 12:55:47 +02:00
use git branch when merging branches
This commit is contained in:
parent
ab03902d08
commit
e23ed80eaa
1 changed files with 1 additions and 1 deletions
|
@ -205,7 +205,7 @@ func branchAlreadyStored(branchLine string, branches []Branch) bool {
|
|||
// directory i.e. things we've fetched but haven't necessarily checked out.
|
||||
// Worth mentioning this has nothing to do with the 'git merge' operation
|
||||
func getAndMergeFetchedBranches(branches []Branch) []Branch {
|
||||
rawString, err := runDirectCommand(getHeadsCommand)
|
||||
rawString, err := runDirectCommand("git branch")
|
||||
if err != nil {
|
||||
return branches
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue