将代码推送到另一个仓库的 Bitbucket 管道

Bitbucket pipeline to push code to another repo

我在 bitback 中有 2 个存储库,存储库 A 和 B。 我需要当有人在存储库 A 中进行提交时,管道启动,并将我的代码复制到存储库 B。 现在使用这样的管道。但是我得到一个错误。

error: src refspec devops-test does not match any.
error: failed to push some refs to

流水线

 - date > test.txt  
 - git remote add two https://login:passwd@repo.git
 - git add .
 - git commit -m "push [scip ci]"
 - git push two devops-test --force
clone:
  depth: full 
pipelines:
  branches:
    uat:
      - step:
          script: 

            - echo "sonar reports"
            - apt install -y git
            - git remote add new https://priya400:yxv7WQjgDJRZZaJNBndC@bitbucket.org/bbc-test4/firstrepo.git
            - touch test111.txt
            - git add .
            - git commit -m "push to remote"
            - git push new aws/client:devops-test --force```