We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I thought this would be simple but I just can't figure how to get a list of available branches.
Ive tried:
nodegit.Repository.open(thisHook.context.vars.req.cookies.gitRepo).then(function (repo) { nodegit.Branch.iteratorNew(repo, nodegit.Branch.BRANCH.ALL).then(function(branchIterator) { // What to do here? // tried branchIterator.forEach(function(item) {}); // tried Object.keys(branchIterator) }); }) .catch(function (err) { console.log(err); }).done(function () { console.log('Finished'); });
What is branchiterator and how do you use it? I noticed in a different issue that the docs for this are still missing (#24).
Could someone please provide a little info on how to list branches?
Thanks, Adam
The text was updated successfully, but these errors were encountered:
If I'm reading the source correctly, I don't think this feature is actually implemented.
Sorry, something went wrong.
As a workaround, there appears to be a working Reference.list(repo) method that gives enough information to derive the branches.
Reference.list(repo)
No branches or pull requests
I thought this would be simple but I just can't figure how to get a list of available branches.
Ive tried:
What is branchiterator and how do you use it? I noticed in a different issue that the docs for this are still missing (#24).
Could someone please provide a little info on how to list branches?
Thanks, Adam
The text was updated successfully, but these errors were encountered: