We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cdea8a5 commit d8d9c7bCopy full SHA for d8d9c7b
core/cb.rpc.git/service.js
@@ -54,6 +54,10 @@ GitRPCService.prototype.commits = function(args) {
54
return this.repo.commits(args.ref, args.limit, args.skip);
55
};
56
57
+GitRPCService.prototype.branches = function(args) {
58
+ return this.repo.branches();
59
+};
60
+
61
GitRPCService.prototype.commits_pending = function() {
62
return this.repo.commits_pending();
63
0 commit comments