All Questions
76 questions
0
votes
1
answer
97
views
Why git diff does not work? fatal: bad revision '[6.1...]'
I want to compare 6.1(which is main) and my branch
git diff [6.1...] -- [/MM-pizdmr-are-up-to-date]
fatal: bad revision '[6.1...]'
I tried Github UI ,but it take too much time and suggested
git diff ...
0
votes
0
answers
80
views
LibreSSL SSL_connect: SSL_ERROR_SYSCALL in connection in macOS
when I run this command in Visual Studio Code in macOS 13.3.1, shows:
➜ texhub-web git:(main) git pull origin main
fatal: unable to access 'https://github.com/RedDwarfTech/texhub-web.git/': LibreSSL ...
1
vote
0
answers
63
views
Git ls-remote to github fails with classic "SHA-1 not supported" on tunneled ssh session but `ssh -T [email protected]` doesn't
Cross-posting from here as suggested by the community.
A bit of context: At my company we do tunneling to ssh into EC2 boxes. This tunneling command is as usual, uses ForwardAgent and the proxycommand ...
2
votes
2
answers
4k
views
Getting error when i load SSH key "Load key "/root/.ssh/id_ed25519": error in libcrypto"
Long story short I have an SSH key pair that I am copying to a new machine from a shared drive whenever the machine starts but when I load in the keys I keep getting an error. There is no difference ...
0
votes
1
answer
602
views
In a yocto recipe, what selects the release to download from the GitHub repository?
I'm using yocto to build my custom Linux distribution. I need to add hiredis to my distribution. hiredis is a minimalistic C client library for the Redis database, and I need it to access Redis by a C ...
0
votes
1
answer
183
views
Automatically add ssh key based on directory I'm in
I have two GitHub accounts. One for personal use, and another for business. Each is set up with its own SSH key gh_personal and gh_business inside ~/.ssh.
I have a personal project that sits in ~/code/...
0
votes
1
answer
48
views
Efficiently Tracking and Updating configs (dotfiles) from Multiple GitHub Repositories
I'm tracking several GitHub repositories, from which I often fetch configuration files for tools like mpv and hyprland. Given that these repositories frequently receive updates, I'm seeking a more ...
1
vote
1
answer
311
views
prompt in git hook?
I'm trying to implement an option to skip a pre-commit hook (which will be considered pass and perform the commit) in a pre-commit hook.
Everything is running fine except the prompt which reads an ...
0
votes
0
answers
1k
views
fatal: unable to auto-detect email address (got 'root@pegasusv.(none)')?
pegasus@pegasusv:/linux_work/linux_stable$ sudo git commit -a
[sudo] password for pegasus:
Author identity unknown
*** Please tell me who you are.
Run
git config --global user.email "you@...
1
vote
0
answers
57
views
Older version of git sporadically finds bad RSA host keys in known_hosts
I'm using an older version of git (2.8) on an older box (RHEL6), and I’m noticing some odd behavior.
When the recent github RSA key exposure incident first happened and I did a git pull, I saw error ...
-2
votes
1
answer
328
views
Is Git hiding files on my computer?
I've accidentally created two branches for my Git repository: main and master, which I now need to merge.
However, when using ls on the command line while checked into main branch, some files on my ...
1
vote
0
answers
124
views
How to remove authentication with gpg-agent/git-credentialmanager to pus to a public repo?
I have a azure devops repository which I have made public recently. Before it was private and I used the git credential manager and gpg-agent.
If I want to push my changes I will get the error:
$ git ...
3
votes
1
answer
4k
views
Why git asks for username when ran inside a script?
I have a Push command, that runs this script:
FindGits |
{
while read gitFolder; do
parent=$(dirname $gitFolder);
if [[ `git -C $parent status --porcelain` ]]; then
...
1
vote
0
answers
2k
views
Unable to git pull with ssh, even with properly configured ssh key
Long short story, when I try to git pull, the following error is showing :
$ git pull
key_from_blob: remaining bytes in key blob 36
key_to_blob: unsupported key type 9
Permission denied (publickey).
...
1
vote
0
answers
42
views
How can I compile TCLAP and link it with CLUSCO?
I need to use an app named CLUSCO, whose git is hosted in BitBucket.
This app uses a library called TCLAP, whose git is hosted in GitHub.
I tried to follow the installation instruction supplied by ...