How can I find my Git credential helper / manager?Git based package manager/installer for LinuxHow can I make...
Is the Amazon rainforest the "world's lungs"?
Do sharpies or markers damage soft rock climbing gear?
Is this password scheme legit?
How do we improve collaboration with problematic tester team?
Why was this commercial plane highly delayed mid-flight?
Can I create something like a macro in Numbers?
Pen test results for web application include a file from a forbidden directory that is not even used or referenced
What will be the immediate action by the pilot and ATC if any plane blocks the runway while landing?
How many petaflops does it take to land on the moon? What does Artemis need with an Aitken?
Which meaning of "must" does the Slow spell use?
Stolen MacBook should I worry about my data?
Did ancient peoples ever hide their treasure behind puzzles?
助けてくれて有難う meaning and usage
Is there any problem with a full installation on a USB drive?
Why does the `ls` command sort files like this?
Term used to describe a person who predicts future outcomes
What is Soda Fountain Etiquette?
Does trying to charm an uncharmable creature cost a spell slot?
How could a self contained organic body propel itself in space
Why does a sticker slowly peel off, but if it is pulled quickly it tears?
Is it true that different variants of the same model aircraft don't require pilot retraining?
Will removing shelving screws from studs damage the studs?
What to do about my 1-month-old boy peeing through diapers?
Talk interpreter
How can I find my Git credential helper / manager?
Git based package manager/installer for LinuxHow can I make git status --short be the defaultHow to find the first tag that contains a git commit?How can I find the git commit in a repo that is more similar to a specified branch?How to find out which files are outside git repositoryssh/git does not use GUI to ask for password after upgrade to to Ubuntu 16.04How to find all git repositories within given folders (fast)How to update git in centOS 6
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ margin-bottom:0;
}
I'm using my github account with ssh key on my CentOS 7 desktop.
So, I don't need to input password for git commands such as git clone
generally.
But, I need to clone a private git repository of another account.
I know the github user ID and password, so I tried to git clone
with https protocol.
git clone https://github.com/<another-account>/<a-private-repository>.git
(<another-account>
and <a-private-repository>
are just used to hide my private information.)
I expect the prompt such as Username for 'https://github.com':
to input github user ID.
But, in my desktop, it shows the below error message:
remote: Repository not found.
fatal: repository 'https://github.com/<another-account>/<a-private-repository>.git/' not found
When I clone the repository on another Linux host, it works well. I can clone it without any problem. But, on my CentOS 7 desktop, it fails.
I guess that my git client of CentOS 7 desktop may use a kind of git credential helper / manager.
But, my global git config has no credential section.
[user]
name = Anselmo Park
email = anselmo@<somewhere>.com
[filter "lfs"]
process = git-lfs filter-process
required = true
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
[gc]
autoDetach = false
[core]
#editor = /usr/bin/vim
editor = /home/anselmo/.local/bin/vim
[diff]
tool = meld
[pull]
rebase = true
[merge]
tool = meld
This is my global git config file. (~/.gitconfig)
Why does this issue happen?
How Can I find my git credential manager?
For your information, I'm using CentOS 7 and KDE desktop.
centos git
add a comment |
I'm using my github account with ssh key on my CentOS 7 desktop.
So, I don't need to input password for git commands such as git clone
generally.
But, I need to clone a private git repository of another account.
I know the github user ID and password, so I tried to git clone
with https protocol.
git clone https://github.com/<another-account>/<a-private-repository>.git
(<another-account>
and <a-private-repository>
are just used to hide my private information.)
I expect the prompt such as Username for 'https://github.com':
to input github user ID.
But, in my desktop, it shows the below error message:
remote: Repository not found.
fatal: repository 'https://github.com/<another-account>/<a-private-repository>.git/' not found
When I clone the repository on another Linux host, it works well. I can clone it without any problem. But, on my CentOS 7 desktop, it fails.
I guess that my git client of CentOS 7 desktop may use a kind of git credential helper / manager.
But, my global git config has no credential section.
[user]
name = Anselmo Park
email = anselmo@<somewhere>.com
[filter "lfs"]
process = git-lfs filter-process
required = true
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
[gc]
autoDetach = false
[core]
#editor = /usr/bin/vim
editor = /home/anselmo/.local/bin/vim
[diff]
tool = meld
[pull]
rebase = true
[merge]
tool = meld
This is my global git config file. (~/.gitconfig)
Why does this issue happen?
How Can I find my git credential manager?
For your information, I'm using CentOS 7 and KDE desktop.
centos git
add a comment |
I'm using my github account with ssh key on my CentOS 7 desktop.
So, I don't need to input password for git commands such as git clone
generally.
But, I need to clone a private git repository of another account.
I know the github user ID and password, so I tried to git clone
with https protocol.
git clone https://github.com/<another-account>/<a-private-repository>.git
(<another-account>
and <a-private-repository>
are just used to hide my private information.)
I expect the prompt such as Username for 'https://github.com':
to input github user ID.
But, in my desktop, it shows the below error message:
remote: Repository not found.
fatal: repository 'https://github.com/<another-account>/<a-private-repository>.git/' not found
When I clone the repository on another Linux host, it works well. I can clone it without any problem. But, on my CentOS 7 desktop, it fails.
I guess that my git client of CentOS 7 desktop may use a kind of git credential helper / manager.
But, my global git config has no credential section.
[user]
name = Anselmo Park
email = anselmo@<somewhere>.com
[filter "lfs"]
process = git-lfs filter-process
required = true
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
[gc]
autoDetach = false
[core]
#editor = /usr/bin/vim
editor = /home/anselmo/.local/bin/vim
[diff]
tool = meld
[pull]
rebase = true
[merge]
tool = meld
This is my global git config file. (~/.gitconfig)
Why does this issue happen?
How Can I find my git credential manager?
For your information, I'm using CentOS 7 and KDE desktop.
centos git
I'm using my github account with ssh key on my CentOS 7 desktop.
So, I don't need to input password for git commands such as git clone
generally.
But, I need to clone a private git repository of another account.
I know the github user ID and password, so I tried to git clone
with https protocol.
git clone https://github.com/<another-account>/<a-private-repository>.git
(<another-account>
and <a-private-repository>
are just used to hide my private information.)
I expect the prompt such as Username for 'https://github.com':
to input github user ID.
But, in my desktop, it shows the below error message:
remote: Repository not found.
fatal: repository 'https://github.com/<another-account>/<a-private-repository>.git/' not found
When I clone the repository on another Linux host, it works well. I can clone it without any problem. But, on my CentOS 7 desktop, it fails.
I guess that my git client of CentOS 7 desktop may use a kind of git credential helper / manager.
But, my global git config has no credential section.
[user]
name = Anselmo Park
email = anselmo@<somewhere>.com
[filter "lfs"]
process = git-lfs filter-process
required = true
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
[gc]
autoDetach = false
[core]
#editor = /usr/bin/vim
editor = /home/anselmo/.local/bin/vim
[diff]
tool = meld
[pull]
rebase = true
[merge]
tool = meld
This is my global git config file. (~/.gitconfig)
Why does this issue happen?
How Can I find my git credential manager?
For your information, I'm using CentOS 7 and KDE desktop.
centos git
centos git
asked 1 hour ago
Anselmo ParkAnselmo Park
295 bronze badges
295 bronze badges
add a comment |
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "106"
};
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: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
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
});
}
});
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%2funix.stackexchange.com%2fquestions%2f537789%2fhow-can-i-find-my-git-credential-helper-manager%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
Thanks for contributing an answer to Unix & Linux Stack Exchange!
- 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%2funix.stackexchange.com%2fquestions%2f537789%2fhow-can-i-find-my-git-credential-helper-manager%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