153,755 questions
0
votes
0
answers
9
views
Git LFS tracked file still served as pointer inside Docker + nginx setup
We're hosting a Unity WebGL project using Docker, nginx, and GitHub. It has several builds underneath projects folder, and everything was working fine until I decided to switch to git LFS. After ...
0
votes
0
answers
23
views
Developing several Android app repo forks simultaneously. Best APP_ID practices? [closed]
I install several slightly different versions of the same Android app to a phone. Sometimes, but not always, they get all mixed up: icons, titles on the homescreen, titles in the app drawer, logged in ...
0
votes
0
answers
37
views
GitLab CI pipeline stages running separately
I am working on adding .gitlab-ci.yml to my R project on GitLab for CI/CD. I have created a pipeline with two stages build and test. In my repo there are two branches namely main and develop. My ...
0
votes
1
answer
23
views
remote: GitLab: LFS objects are missing. Ensure LFS is properly set up or try a manual "git lfs push --all"
I am trying to move the source code across some different git repos.
Both are using git as the vcs.
Here are the steps I am following-
git clone --mirror
cd
git remote set-url origin <...
-1
votes
1
answer
56
views
How to remove files after git add .? [duplicate]
I have been trying for days how to fix this. I have some very large files in my website over 100mb each. I issued "git add ." and then pushed the files. Obviously, git complains the files ...
0
votes
0
answers
20
views
Ignore undefined authors in git svn clone --authors-file command
We are migrating svn to git and some of the users in our svn are no longer with the company and have no corresponding account in our git repository.
Is there any way to ignore mapping of these users ...
2
votes
1
answer
32
views
How does `--reference-if-able` affect `git fetch` and `git push` propagation in a clone?
I have two local clones of the same remote repository (urlA):
mirror/ – created with
git clone --mirror urlA mirror
dirB/ – created with
git clone --reference-if-able ../mirror urlA dirB
In dirB, ...
0
votes
0
answers
26
views
`OpenSSL SSL_read: SSL_ERROR_SYSCALL, errno 0` error when using `git clone`?
When I open up git, I try to clone something for a project:
$ git clone https://github.com/example/project.git
Cloning into 'project'...
At first, it seems like it's doing its thing. But a few ...
-1
votes
2
answers
35
views
Git pull is auto-mergin main into current branch
I have a repo cloned with: git clone --depth 1 [URL]
Then when I want to checkout a branch from another user, I do:
git fetch origin user/otheruser/their-branch-name:user/otheruser/their-branch-name
...
-4
votes
0
answers
49
views
How can I merge two specific git commits? [duplicate]
I have an issue where I forgot to update the license for a specific data set and want to ensure no issues in the git history.
The problem is that I have something like this:
usr
commitID ...
-1
votes
0
answers
32
views
Files read-only after each git pull
Every time anyone on the team git pulls, files are in 644 mode. We have to run chmod a+w every time which is super annoying.
From what I can see after some research, only +x rights can be changed. But ...
-1
votes
0
answers
45
views
How to recover a deleted branch from Gitlab?
I have mistakenly deleted a stale branch from a Gitlab repository. I tried several options like git reflog to recover it, but all these trials were not fruitful, as I didn't have the branch locally on ...
0
votes
0
answers
29
views
How to dynamically create a Prefect deployment from a Git-sourced flow within a FastAPI endpoint?
We are trying to deploy a FastAPI endpoint, which calls a function to dynamically create a prefect deployment (sourced from git) but its failing.
Below is the code that is being used
async def ...
0
votes
1
answer
29
views
After changing .Net Framework version, this project references NuGet package(s) that are missing on this computer
My project was stored on TFS, and working fine.
Recently, we changed from TFS to Github. So, I zipped up my project (without the bin and obj folders) and sent that to our IT guy so he could create the ...
-1
votes
1
answer
39
views
Cursor showing there are Git changes when there aren't
I am only working locally - no remote. I am coming from vim and just downloaded Cursor so haven't messed with the settings. When I edit a file in Cursor and commit the changes to git, cursor still ...