Github desktop not allowing push to github repository owned by myself Announcing the arrival...
How to deal with a team lead who never gives me credit?
Do I really need recursive chmod to restrict access to a folder?
Why is my conclusion inconsistent with the van't Hoff equation?
What is the role of the transistor and diode in a soft start circuit?
Why did the Falcon Heavy center core fall off the ASDS OCISLY barge?
How do I keep my slimes from escaping their pens?
How to tell that you are a giant?
Extract all GPU name, model and GPU ram
Generate an RGB colour grid
List of Python versions
ListPlot join points by nearest neighbor rather than order
Bete Noir -- no dairy
What is the logic behind the Maharil's explanation of why we don't say שעשה ניסים on Pesach?
What does this icon in iOS Stardew Valley mean?
At the end of Thor: Ragnarok why don't the Asgardians turn and head for the Bifrost as per their original plan?
What exactly is a "Meth" in Altered Carbon?
Single word antonym of "flightless"
Can a non-EU citizen traveling with me come with me through the EU passport line?
If a contract sometimes uses the wrong name, is it still valid?
How to align text above triangle figure
How does debian/ubuntu knows a package has a updated version
String `!23` is replaced with `docker` in command line
Why do we bend a book to keep it straight?
Why was the term "discrete" used in discrete logarithm?
Github desktop not allowing push to github repository owned by myself
Announcing the arrival of Valued Associate #679: Cesar Manara
Planned maintenance scheduled April 17/18, 2019 at 00:00UTC (8:00pm US/Eastern)Git - GitHub Repository Setup Viable?git push to github via cron on macWorking with Git and remote repositoriesGit github not working with google authenticator OSXGithub lets me commit as another userGithub not verifying with OpenPGP key?Why is GitHub Desktop not letting me interact with it?Can not do anything with GitHub remotelyGitHub - UI allowing non-technical collaborators to edit filesGit overwrote local with remote when reverting a push
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ height:90px;width:728px;box-sizing:border-box;
}
I connected my gitHub repository to gitHub desktop and have it running through IntelliJ. Everything works fine on IntelliJ; it allows me to add files and class no problem. Then when I update and and commit it to the local branch it is fine. Then when I go to the gitHub Desktop I can see the changes appear. The problem is when I go to push the updates. It throws this error message:
Authentication failed. You may not have permission to access the
repository or the repository may have been archived. Open options and
verify that you're signed in with an account that has permission to
access this repository.
The thing is when on GitHub I clicked the option to open the project on GitHub Desktop and when I look in options it gives me the option to sign out. I am so confused about the error.
git github github-desktop
New contributor
add a comment |
I connected my gitHub repository to gitHub desktop and have it running through IntelliJ. Everything works fine on IntelliJ; it allows me to add files and class no problem. Then when I update and and commit it to the local branch it is fine. Then when I go to the gitHub Desktop I can see the changes appear. The problem is when I go to push the updates. It throws this error message:
Authentication failed. You may not have permission to access the
repository or the repository may have been archived. Open options and
verify that you're signed in with an account that has permission to
access this repository.
The thing is when on GitHub I clicked the option to open the project on GitHub Desktop and when I look in options it gives me the option to sign out. I am so confused about the error.
git github github-desktop
New contributor
add a comment |
I connected my gitHub repository to gitHub desktop and have it running through IntelliJ. Everything works fine on IntelliJ; it allows me to add files and class no problem. Then when I update and and commit it to the local branch it is fine. Then when I go to the gitHub Desktop I can see the changes appear. The problem is when I go to push the updates. It throws this error message:
Authentication failed. You may not have permission to access the
repository or the repository may have been archived. Open options and
verify that you're signed in with an account that has permission to
access this repository.
The thing is when on GitHub I clicked the option to open the project on GitHub Desktop and when I look in options it gives me the option to sign out. I am so confused about the error.
git github github-desktop
New contributor
I connected my gitHub repository to gitHub desktop and have it running through IntelliJ. Everything works fine on IntelliJ; it allows me to add files and class no problem. Then when I update and and commit it to the local branch it is fine. Then when I go to the gitHub Desktop I can see the changes appear. The problem is when I go to push the updates. It throws this error message:
Authentication failed. You may not have permission to access the
repository or the repository may have been archived. Open options and
verify that you're signed in with an account that has permission to
access this repository.
The thing is when on GitHub I clicked the option to open the project on GitHub Desktop and when I look in options it gives me the option to sign out. I am so confused about the error.
git github github-desktop
git github github-desktop
New contributor
New contributor
edited 17 hours ago
CaldeiraG
1,283521
1,283521
New contributor
asked 18 hours ago
LeviLevi
12
12
New contributor
New contributor
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
You might have added restrictions to your GitHub project (e.g. you need to go through pull requests before pushing some commits). To check those out, go to <repo.url>/settings/branches
to see your branch rules.
Otherwise, have you logged in with your github app? Is it the same profile as the owner of the repo? If not the owner, are you a collaborator?
If it is a public repository, you probably have to fork it, in order to work on it.
Otherwise, try this :
$ cd path/to/my/repo/
$ git push
It should ask for your GitHub credentials if you cloned it through HTTPS.
If the error persists, you should probably clone your repo through the GitHub Desktop app to be sure that the Git configuration files match what is needed to interface with your GitHub repository.
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "3"
};
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
});
}
});
Levi is a new contributor. Be nice, and check out our Code of Conduct.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f1426002%2fgithub-desktop-not-allowing-push-to-github-repository-owned-by-myself%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
You might have added restrictions to your GitHub project (e.g. you need to go through pull requests before pushing some commits). To check those out, go to <repo.url>/settings/branches
to see your branch rules.
Otherwise, have you logged in with your github app? Is it the same profile as the owner of the repo? If not the owner, are you a collaborator?
If it is a public repository, you probably have to fork it, in order to work on it.
Otherwise, try this :
$ cd path/to/my/repo/
$ git push
It should ask for your GitHub credentials if you cloned it through HTTPS.
If the error persists, you should probably clone your repo through the GitHub Desktop app to be sure that the Git configuration files match what is needed to interface with your GitHub repository.
add a comment |
You might have added restrictions to your GitHub project (e.g. you need to go through pull requests before pushing some commits). To check those out, go to <repo.url>/settings/branches
to see your branch rules.
Otherwise, have you logged in with your github app? Is it the same profile as the owner of the repo? If not the owner, are you a collaborator?
If it is a public repository, you probably have to fork it, in order to work on it.
Otherwise, try this :
$ cd path/to/my/repo/
$ git push
It should ask for your GitHub credentials if you cloned it through HTTPS.
If the error persists, you should probably clone your repo through the GitHub Desktop app to be sure that the Git configuration files match what is needed to interface with your GitHub repository.
add a comment |
You might have added restrictions to your GitHub project (e.g. you need to go through pull requests before pushing some commits). To check those out, go to <repo.url>/settings/branches
to see your branch rules.
Otherwise, have you logged in with your github app? Is it the same profile as the owner of the repo? If not the owner, are you a collaborator?
If it is a public repository, you probably have to fork it, in order to work on it.
Otherwise, try this :
$ cd path/to/my/repo/
$ git push
It should ask for your GitHub credentials if you cloned it through HTTPS.
If the error persists, you should probably clone your repo through the GitHub Desktop app to be sure that the Git configuration files match what is needed to interface with your GitHub repository.
You might have added restrictions to your GitHub project (e.g. you need to go through pull requests before pushing some commits). To check those out, go to <repo.url>/settings/branches
to see your branch rules.
Otherwise, have you logged in with your github app? Is it the same profile as the owner of the repo? If not the owner, are you a collaborator?
If it is a public repository, you probably have to fork it, in order to work on it.
Otherwise, try this :
$ cd path/to/my/repo/
$ git push
It should ask for your GitHub credentials if you cloned it through HTTPS.
If the error persists, you should probably clone your repo through the GitHub Desktop app to be sure that the Git configuration files match what is needed to interface with your GitHub repository.
edited 17 hours ago
answered 17 hours ago
AlexLossAlexLoss
103
103
add a comment |
add a comment |
Levi is a new contributor. Be nice, and check out our Code of Conduct.
Levi is a new contributor. Be nice, and check out our Code of Conduct.
Levi is a new contributor. Be nice, and check out our Code of Conduct.
Levi is a new contributor. Be nice, and check out our Code of Conduct.
Thanks for contributing an answer to Super User!
- 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.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f1426002%2fgithub-desktop-not-allowing-push-to-github-repository-owned-by-myself%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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