Create
cancel
Showing results for 
Search instead for 
Did you mean: 
Sign up Log in

Shallow update not allowed

finnruijter May 3, 2021

Hi there!

 

I'm trying to deploy a commit, but I'm getting a response that shallow update isn't allowed. In what way can I fix this issue?

 

Here's the log:

remote: git.wpengine.com: validating
remote: - warning: changes will be deployed to production application ...
remote: - info: validating files in XXX ...
remote: - info: found application servers ...
remote: - success: validation complete!
To git@git.wpengine.com:production/XXX.git
! [remote rejected] master -> master (shallow update not allowed)
error: failed to push some refs to 'git@git.wpengine.com:production/XXX.git'

2 answers

1 accepted

0 votes
Answer accepted
Jimmy Seddon
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
May 3, 2021

Hi @finnruijter,

Welcome to the Community!

It looks like you are trying to push changes with a shallow clone of the git repository, which isn't an operation you can perform.

I'd recommend checking out this post here for more details on what you need to do to resolve your issue: https://community.atlassian.com/t5/Bitbucket-questions/Bitbucket-pipeline-to-Heroku-fails-quot-Push-rejected-source/qaq-p/896046

Basically, you are going to either need to perform a full clone (not a shallow one) or the push that you are performing needs to target the specific branch you have checked out.

I hope that helps!

-Jimmy

0 votes
Christhoval Barba July 29, 2021

Hello @finnruijter 
try my solution

- step:
script:
- apk add git openssh-client
- git remote add [name] <repo_url>
- git remote -v
- git pull
- git checkout [branch]
- git filter-branch -- --all
- git push -u sync [branch]

Work for me 

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events