DCO signing issue, src refspec does not match any, Failed to push some refs












1















Trying to follow the instructions at https://github.com/gradle/gradle/pull/7469/checks?check_run_id=25144990



I was able to signoff the commit, but when I execute the second command "git push --force origin patch-1", I get below error in the git console :



$ git push --force origin patch-1
error: src refspec patch-1 does not match any.
error: failed to push some refs to 'https://github.com/akmalick/gradle.git'


I have looked up similar questions over stackoverflow, but they don't seem to help my cause. Any help in this regard is highly appreciated.










share|improve this question

























  • I see you have branch patch-1 at Github; do you have it in your local repository?

    – phd
    Nov 16 '18 at 11:49











  • @phd running command git rev-parse --verify --quiet patch-1 gives no output. Does that mean, I don't have it in my local repo ?

    – Asif Kamran Malick
    Nov 16 '18 at 12:02













  • Yes. You need to fetch the branch from Github: git fetch origin patch-1:patch-1.

    – phd
    Nov 16 '18 at 12:27











  • Thanks@phd Did that and running the command git rev-parse --verify --quiet patch-1 gives me a hash but the git status now tells me this : On branch master Your branch is ahead of 'origin/master' by 1 commit. (use "git push" to publish your local commits) nothing to commit, working tree clean

    – Asif Kamran Malick
    Nov 16 '18 at 13:22











  • git fetch fetches commits but doesn't switch branches. To make the branch current run git checkout patch-1.

    – phd
    Nov 16 '18 at 15:29
















1















Trying to follow the instructions at https://github.com/gradle/gradle/pull/7469/checks?check_run_id=25144990



I was able to signoff the commit, but when I execute the second command "git push --force origin patch-1", I get below error in the git console :



$ git push --force origin patch-1
error: src refspec patch-1 does not match any.
error: failed to push some refs to 'https://github.com/akmalick/gradle.git'


I have looked up similar questions over stackoverflow, but they don't seem to help my cause. Any help in this regard is highly appreciated.










share|improve this question

























  • I see you have branch patch-1 at Github; do you have it in your local repository?

    – phd
    Nov 16 '18 at 11:49











  • @phd running command git rev-parse --verify --quiet patch-1 gives no output. Does that mean, I don't have it in my local repo ?

    – Asif Kamran Malick
    Nov 16 '18 at 12:02













  • Yes. You need to fetch the branch from Github: git fetch origin patch-1:patch-1.

    – phd
    Nov 16 '18 at 12:27











  • Thanks@phd Did that and running the command git rev-parse --verify --quiet patch-1 gives me a hash but the git status now tells me this : On branch master Your branch is ahead of 'origin/master' by 1 commit. (use "git push" to publish your local commits) nothing to commit, working tree clean

    – Asif Kamran Malick
    Nov 16 '18 at 13:22











  • git fetch fetches commits but doesn't switch branches. To make the branch current run git checkout patch-1.

    – phd
    Nov 16 '18 at 15:29














1












1








1








Trying to follow the instructions at https://github.com/gradle/gradle/pull/7469/checks?check_run_id=25144990



I was able to signoff the commit, but when I execute the second command "git push --force origin patch-1", I get below error in the git console :



$ git push --force origin patch-1
error: src refspec patch-1 does not match any.
error: failed to push some refs to 'https://github.com/akmalick/gradle.git'


I have looked up similar questions over stackoverflow, but they don't seem to help my cause. Any help in this regard is highly appreciated.










share|improve this question
















Trying to follow the instructions at https://github.com/gradle/gradle/pull/7469/checks?check_run_id=25144990



I was able to signoff the commit, but when I execute the second command "git push --force origin patch-1", I get below error in the git console :



$ git push --force origin patch-1
error: src refspec patch-1 does not match any.
error: failed to push some refs to 'https://github.com/akmalick/gradle.git'


I have looked up similar questions over stackoverflow, but they don't seem to help my cause. Any help in this regard is highly appreciated.







git github






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Nov 16 '18 at 8:36







Asif Kamran Malick

















asked Nov 16 '18 at 8:30









Asif Kamran MalickAsif Kamran Malick

1071210




1071210













  • I see you have branch patch-1 at Github; do you have it in your local repository?

    – phd
    Nov 16 '18 at 11:49











  • @phd running command git rev-parse --verify --quiet patch-1 gives no output. Does that mean, I don't have it in my local repo ?

    – Asif Kamran Malick
    Nov 16 '18 at 12:02













  • Yes. You need to fetch the branch from Github: git fetch origin patch-1:patch-1.

    – phd
    Nov 16 '18 at 12:27











  • Thanks@phd Did that and running the command git rev-parse --verify --quiet patch-1 gives me a hash but the git status now tells me this : On branch master Your branch is ahead of 'origin/master' by 1 commit. (use "git push" to publish your local commits) nothing to commit, working tree clean

    – Asif Kamran Malick
    Nov 16 '18 at 13:22











  • git fetch fetches commits but doesn't switch branches. To make the branch current run git checkout patch-1.

    – phd
    Nov 16 '18 at 15:29



















  • I see you have branch patch-1 at Github; do you have it in your local repository?

    – phd
    Nov 16 '18 at 11:49











  • @phd running command git rev-parse --verify --quiet patch-1 gives no output. Does that mean, I don't have it in my local repo ?

    – Asif Kamran Malick
    Nov 16 '18 at 12:02













  • Yes. You need to fetch the branch from Github: git fetch origin patch-1:patch-1.

    – phd
    Nov 16 '18 at 12:27











  • Thanks@phd Did that and running the command git rev-parse --verify --quiet patch-1 gives me a hash but the git status now tells me this : On branch master Your branch is ahead of 'origin/master' by 1 commit. (use "git push" to publish your local commits) nothing to commit, working tree clean

    – Asif Kamran Malick
    Nov 16 '18 at 13:22











  • git fetch fetches commits but doesn't switch branches. To make the branch current run git checkout patch-1.

    – phd
    Nov 16 '18 at 15:29

















I see you have branch patch-1 at Github; do you have it in your local repository?

– phd
Nov 16 '18 at 11:49





I see you have branch patch-1 at Github; do you have it in your local repository?

– phd
Nov 16 '18 at 11:49













@phd running command git rev-parse --verify --quiet patch-1 gives no output. Does that mean, I don't have it in my local repo ?

– Asif Kamran Malick
Nov 16 '18 at 12:02







@phd running command git rev-parse --verify --quiet patch-1 gives no output. Does that mean, I don't have it in my local repo ?

– Asif Kamran Malick
Nov 16 '18 at 12:02















Yes. You need to fetch the branch from Github: git fetch origin patch-1:patch-1.

– phd
Nov 16 '18 at 12:27





Yes. You need to fetch the branch from Github: git fetch origin patch-1:patch-1.

– phd
Nov 16 '18 at 12:27













Thanks@phd Did that and running the command git rev-parse --verify --quiet patch-1 gives me a hash but the git status now tells me this : On branch master Your branch is ahead of 'origin/master' by 1 commit. (use "git push" to publish your local commits) nothing to commit, working tree clean

– Asif Kamran Malick
Nov 16 '18 at 13:22





Thanks@phd Did that and running the command git rev-parse --verify --quiet patch-1 gives me a hash but the git status now tells me this : On branch master Your branch is ahead of 'origin/master' by 1 commit. (use "git push" to publish your local commits) nothing to commit, working tree clean

– Asif Kamran Malick
Nov 16 '18 at 13:22













git fetch fetches commits but doesn't switch branches. To make the branch current run git checkout patch-1.

– phd
Nov 16 '18 at 15:29





git fetch fetches commits but doesn't switch branches. To make the branch current run git checkout patch-1.

– phd
Nov 16 '18 at 15:29












0






active

oldest

votes











Your Answer






StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");

StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});

function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});


}
});














draft saved

draft discarded


















StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53334057%2fdco-signing-issue-src-refspec-does-not-match-any-failed-to-push-some-refs%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown

























0






active

oldest

votes








0






active

oldest

votes









active

oldest

votes






active

oldest

votes
















draft saved

draft discarded




















































Thanks for contributing an answer to Stack Overflow!


  • Please be sure to answer the question. Provide details and share your research!

But avoid



  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.


To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53334057%2fdco-signing-issue-src-refspec-does-not-match-any-failed-to-push-some-refs%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







這個網誌中的熱門文章

Tangent Lines Diagram Along Smooth Curve

Yusuf al-Mu'taman ibn Hud

Zucchini