1,418 questions
0
votes
0
answers
98
views
Git clone failed on Windows but works fine on Mac
I am trying to git clone a GitLab repository using HTTPS on my Windows Laptop. HTTPS is the only protocol supported. It failed with the following error:
remote: Enumerating objects: 202266, done.
...
2
votes
1
answer
112
views
Stop git from relating related history on fetch
I'm working on creating a template system with git, but git is being too clever (for my use case) by automatically 'unshallowing'. Let me try to explain.
For context, the templating process starts by ...
0
votes
0
answers
33
views
GitKraken gets hung on the end of cloning repo
On GitKarken Desktop, when I clone a repo it'll download until it gets to the end and then it just hangs there and doesn't finish cloning. It just doesn't seem to fully download 100% of the project ...
0
votes
1
answer
91
views
Remove git data without breaking fetch
I'm processing a lot of Git repositories with software I wrote. The basic process is like this:
Do git clone --no-checkout --filter=blob:none <url>
Read interesting data from the repository and ...
2
votes
1
answer
70
views
Does updating the submodules before checking out a tag have any adverse effects?
I am trying to clone a git repo and checkout a particular tag. But I have a doubt regarding the order of commands. For now, I follow these steps:
git clone <some_repo>
cd <repo_dir>
git ...
0
votes
0
answers
41
views
FATAL: R any reponame username DENIED by fallthru
I have added my .pub key for the repo access .
tried with ssh -T hostname for testing and it's working perfect.
But while trying to clone the repository, I'm getting error like this:
FYI, I'm using ...
0
votes
0
answers
57
views
git partial clone with multiple remotes
I am working with two repos (repo_a and repo_b) which are two forks of the same project. They are both very large in terms of files and history. I need to use a small set of branches from each of them,...
2
votes
3
answers
353
views
How can I clone a git repository owned by another user without modifying the global git configuration file?
I wish to clone a git repository owned by another (trusted) user on a shared system. Simply trying to clone it without any change to the git configuration does not work because recent versions of git ...
0
votes
1
answer
36
views
The file is not visible even though I changed the branch using Gitflow
I cloned it again and set up Gitflow to change the branch from main to development, but the file is not visible.
After deleting the file, I cloned it again and set up Gitflow again, but it was the ...
0
votes
0
answers
492
views
GIT - error: RPC failed; curl 18 transfer closed with outstanding read data remaining when clone Supabase
I want to setup Supabase for Self-Hosting with Docker. But I failed when clone supabase github.
PS C:\AaFolder\Dev\Supabase> git clone --depth 1 https://github.com/supabase/supabase
Cloning into '...
0
votes
1
answer
81
views
Git clone does not clone the specified remote repository
Recently, I have a strange behavior when trying to clone a remote repository to my local machine using git bash as it does not clone the specified remote repository but it clones one of my docker ...
-1
votes
1
answer
1k
views
Can't clone odoo 17 repository completely
I'm trying to clone odoo 17 branch. The size of the repository is like 3-4 GB. But whenever I try to clone the repository it breaks in the middle and doesn't even reach to 1% of it. This is the error ...
1
vote
2
answers
67
views
How to access origin/main in gitlab CI/CD
I added some automated commit quality checks to our gitlab CI, which essentially walks through all the commits that are in the merge request one-by-one. I essentially loop through the result of a git ...
2
votes
3
answers
531
views
Syfmony new Project directory . is not empty error
After cloning an existing git repo to install a new fresh Symfony I got the error Project directory
symfony new . --webapp
This is because of the .git file generated after clonning the existing repo.
...
1
vote
0
answers
146
views
Is there a way to git clone images uploaded to GitHub wiki?
Is it possible to clone the images uploaded to GitHub wiki?
It is possible to clone a GitHub wiki as its own repo. e.g. (e.g.https://stackoverflow.com/questions/15080848/how-do-i-clone-a-github-wiki)
...
0
votes
1
answer
52
views
Wanting to add files to an already Existing Repo on GitHub
I am very new to working with Git and GitBash.
I have a repo on GitHub called "RepoA" which already has some files (let's say files from FolderA). I uploaded these on there using add, commit ...
0
votes
0
answers
74
views
XAML designer disappear when I close my project
I have a problem with a project I am cloning to edit. When I clone it and the open it, all my xaml files are displayed half code, half interface designer.
half code, hald designer image
But once I ...
1
vote
0
answers
4k
views
While cloning the git repository getting unexpected disconnect while reading side band packet
Cloning into 'repo?'...
remote: Enumerating objects: 2521, done.
remote: Counting objects: 100% (2521/2521), done.
remote: Compressing objects: 100% (2273/2273), done.
error: 4318 bytes of body are ...
0
votes
0
answers
170
views
When replying to sync, git fetch, or git clone, bad packet length xxxxx is reported
When I execute repo sync to pull a large project, I will report a Bad packet length xxxxx error, and sometimes I will also report this error when using git clone. How should I handle this?
Error info:
...
-1
votes
1
answer
584
views
Why does git not allow me to clone this repository? [duplicate]
Git gives me this when I attempt to clone.
$ git clone --depth 1 "https://github.com/Ajatt-Tools/kitsunekko-mirror.git"
Cloning into 'kitsunekko-mirror'...
remote: Enumerating objects: ...
1
vote
1
answer
259
views
Can't clone using RSA / Ed25519 / ECDSA on GitHub "Permission denied (publickey)"
RSA algorithm:
ssh-keygen -t rsa -b 4096 -C "[email protected]"
Enter file in which to save the key (/home/eljoaca/.ssh/id_rsa): ENTER
Enter passphrase (empty for no passphrase): ENTER
...
0
votes
3
answers
443
views
How to get the name of a git repository after fetching it and checking it out? [duplicate]
If I were to clone a repository, git automatically determines the name of the repository and clones it into that directory.
As per the git clone documentation:
<directory>
The name of a new ...
6
votes
3
answers
14k
views
Error: "1824 bytes of body are still expected" while cloning repository from GitHub
I'm encountering an issue while trying to clone a Git repository from GitHub. When I run the git clone command, I consistently receive the following error message:
1824 bytes of body are still ...
1
vote
0
answers
33
views
Copy or Sync all the branches from one Org Repo to another org with same repo
I have written the powershell script which will sync or copy the repo from one org to another org, but currently this script is sync only master branch, but not all the branches.
Below is the Code
<...
1
vote
0
answers
314
views
Git clone not working on windows dev drive
I started using Windows 11 Dev drive. After I created a separate dev drive, I was not able to clone my repositories into my dev drive. I tried cloning into other drives and it works correctly. Dev ...