github - Error in travis ci build -


i'm having trouble in build on travis ci. i'm getting errors on git , that's blocking me. i've tried restart build , stuff that, didn't work. .travis.yml:

language: node_js node_js:  - "0.12"  - "0.10" branches:  only:   - v1.0.0_dev   - v1.0.0_stable before_script:  - npm install -g bower  - npm install -g gulp  - npm install -g karma  - bower install  - gulp prod 

and that's error code:

0.53s$ git clone --depth=50 git://github.com/gumga/components.git gumga/components cloning 'gumga/components'... remote: counting objects: 5, done. remote: compressing objects: 100% (5/5), done. remote: total 5 (delta 0), reused 5 (delta 0), pack-reused 0 receiving objects: 100% (5/5), done. checking connectivity... done. $ cd gumga/components 3.08s$ git fetch origin +refs/pull/3/merge: fatal: couldn't find remote ref refs/pull/3/merge command "eval git fetch origin +refs/pull/3/merge:" failed.  retrying, 2 of 3. fatal: couldn't find remote ref refs/pull/3/merge command "eval git fetch origin +refs/pull/3/merge:" failed.  retrying, 3 of 3. fatal: couldn't find remote ref refs/pull/3/merge command "eval git fetch origin +refs/pull/3/merge:" failed 3 times. command "git fetch origin +refs/pull/3/merge:" failed , exited   128 during. build has been stopped. 

you merged pull request (here: #3) before:

fatal: couldn't find remote ref refs/pull/3/merge 

try open pr again or create new commit!


Comments