gitless-vcs / gitless

A simple version control system built on top of Git
https://gitless.com
MIT License
1.92k stars 107 forks source link

Better performance of gl branch -r #223

Closed stevdiaz closed 4 years ago

stevdiaz commented 4 years ago

In the code, we get the remote name and add it before the branch name if the -v flag is not used, as listall_branches() does not have the remote name, just the branch name. However, when the -v flag is used, lookupall_branches() does have the remote name with the branch, so we don't need to add anything. Let me know if this should/could be changed!