The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
I'm running pipeline on a angular workspace project power by nrwl.
and I have a npm script that reference the branch (`origin/master`)
node --max_old_space_size=8192 ./node_modules/.bin/nx affected:lint --parallel --maxParallel 8 --base=origin/master --head=1ffcde318bba511382be7bd44cfdccb186e063a1
(Note the --base option)
this will work when the pipeline is running on master branch but I kept getting
fatal: Not a valid object name origin/master
when running pipeline on other branch.
I thought it's because master is not fetched, so I add
git fetch origin master
before I run the other command, and from the log I can tell that master is being fetched but I still get the error.
Does anyone know how to resolve this?
Hi Evan,
I suspect your "git fetch" command is not working as expected because Pipelines doesn't do a full clone and this results in a git configuration that won't automatically create remote tracking branches for other branches (besides the one being built). To fetch a different branch, try something like this:
git fetch origin master:refs/remotes/origin/master
This should create the remote tracking branch "origin/master" regardless of the current configuration.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Beginning on April 4th, we will be implementing push limits. This means that your push cannot be completed if it is over 3.5 GB. If you do attempt to complete a push that is over 3.5 GB, it will fail...
Connect with like-minded Atlassian users at free events near you!
Find an eventConnect with like-minded Atlassian users at free events near you!
Unfortunately there are no Community Events near you at the moment.
Host an eventYou're one step closer to meeting fellow Atlassian users at your local event. Learn more about Community Events
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.