153,754 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
Best practices
0
votes
1
replies
19
views
I want to make "HTTPS proxy cache server" with nginx that controls large size of git source
i'm newbie in nginx and proxy server.
We have a problem about googlesource 429 Error, caused by many requests
and because of bandwidth, we took a long time to get googlesource.
We reviewed to make ...
0
votes
1
answer
33
views
Is the hash for a Git submodule associated with the section key or with the path?
I'm doing something with git-filter-repo that is like the convert-svnexternals script here:
https://github.com/newren/git-filter-repo/blob/main/contrib/filter-repo-demos/convert-svnexternals
In that ...
1
vote
1
answer
82
views
Why does git fetch origin pause / do nothing / not complete
pre-existing questions are asking about commands that exit with status code 0 -- my command does not exit.
Here is the super verbose output obtained via
GIT_TRACE=true \
GIT_CURL_VERBOSE=true \
...
Advice
0
votes
8
replies
96
views
Why does Git not support nested branching, and how can I design a versioning system that does?
I’m building a file versioning system for my product ThinkNCollab, which includes both a Task Management System and an advanced File Versioning System.
While designing the CLI for the versioning ...
-1
votes
0
answers
45
views
PHP 8 / MAMP: Restored project gives Internal Server Error and php_mysqli.dll warnings after git pull [closed]
I'm working on a PHP project on MAMP (Windows, PHP 8.3). Everything was working fine until I did a git pull. After restoring some files from an older commit using git checkout, my project now gives a ...
-3
votes
2
answers
89
views
How to mark commit for upcoming release branch merge?
There is following Git branch setup with long living release branches:
develop branch
current release branch based on develop somewhen in the past. Release is very soon.
a minor release shall be ...
2
votes
4
answers
85
views
How to get pull requests that were never merged on the original project into forked project on Github
On Github there is a promising repository that hasn't been maintained for years. So there are pull requests from other users that have been ignored.
I have forked the repo. Is there a way to get the ...
Best practices
0
votes
4
replies
86
views
How can I keep my main branch clean while still getting daily GitHub contribution activity?
The problem is that committing to the main branch every day makes the history messy, but commits made in other branches do not appear in the GitHub contribution graph (the green boxes).
What can I do ...
Advice
0
votes
3
replies
65
views
Show commited (but not pushed) changes in similar format to git status
I need to see where I have committed work, but not yet pushed it.
I would really prefer something similar to git status which shows a readable summary.
I don't want to be doing git log, looking at ...
-5
votes
0
answers
48
views
Git clone fails with error: [Git repo is not cloning ] — how do I fix this? [closed]
I'm trying to clone a GitHub repository, but I get fatal: repository not found. The repository exists, the URL is correct, and I have access. What could be the possible reasons for this error please ...
-6
votes
0
answers
65
views
how to make git recognize the emoji unicode not changed?
the content is generated by unplugin-vue-router, nothing changed but git says it changed. if submit, it will report nothing changed
original content is \u203C\uFE0F, but when vite build run, it will ...
Advice
1
vote
2
replies
69
views
How to make `git branch --show-current` work on GitLab?
There are several questions on stack overflow asking how to get the current branch name on GitLab. The interwebz are full of countless variations of that same question. The answer that is always ...
1
vote
1
answer
61
views
Git: How to remove In Linux correctly and permanently each ^M generated in Windows in .adoc files?
In Windows 11 (even in 10) was written a lot of documentation through a hierarchy of .adoc files and git was used for track controls. Well the project directory was shared to other users where they ...
1
vote
1
answer
96
views
GitHub and squash merge being overridden when PR is approved
I was having a look at the history of my main branch in Git today, and I noticed that, despite the fact that I've configured branch protection of the main branch, and only allowed merging squash ...
Best practices
0
votes
5
replies
45
views
Need a Opinion on the workflow from Feature dev to staging test to prod run
the title is somewhat difficult i try to explain what i want the input from you all.
My current practice from a feature/bug development towards the codes journey to the production is following
I get ...