-
Notifications
You must be signed in to change notification settings - Fork 23
New issue
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
Cannot find remote ref <branchname> #38
Comments
@mxstbr I haven’t seen this before, I’ll take a look and try to replicate 👍 |
@mxstbr Should I do something? Did I break this? btw What is this? :) |
No, that's on stage-ci. |
From what I can tell it's failing on this line: log.info(`> Fetching ${ref}...`);
await git.fetch('origin', ref); It could be an underlying I've attempted to replicate locally with this code, but I don't have any issues: const git = require('simple-git/promise')();
(async () => {
await git.clone('https://github.com/styled-components/styled-components-website.git', './style-comp', ['--depth=1', '--branch=add/alogliadocs']);
await git.cwd('./styled-components');
await git.fetch('origin', 'add/alogliadocs');
})(); @mxstbr It'd be super helpful if you could grab the payload sent to the webhook and paste it in here 🙏 |
just picked back up stage-ci.. its' been a while. I can see this when a contributor forks and stage-ci is trying to checkout their branch: Line 108 in 408f6a0
You can see stage-ci is really only used to fetching the origin remote. Other remotes aren't a thing. :) |
put up a fix for this in #38 |
Thanks for the PR @paulirish ! 🙏 |
This is happening here: styled-components/styled-components-website#158
/cc @hugomd this is on your branch, maybe related?
The text was updated successfully, but these errors were encountered: