pwntester / octo.nvim

Edit and review GitHub issues and pull requests from the comfort of your favorite editor
MIT License
2.25k stars 124 forks source link

refactor: call git only once to get remotes #399

Closed delphinus closed 1 year ago

delphinus commented 1 year ago

Describe what this PR does / why we need it

To get remotes, the current build calls git remote show and git remote <name> multi times. Now it calls git remote -v only once and can get all results from this.

Does this pull request fix one issue?

Describe how you did it

Describe how to verify it

Special notes for reviews

pwntester commented 1 year ago

Thanks!