131 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
0
votes
0
answers
27
views
Hide/Unhide hotfixes in control panel
I have a base setup (RTM) followed by three sequential hotfixes: HF1, HF2, and HF3. After installing HF3, only RTM and HF3 are visible in "Programs and Features" (Control Panel), while HF1 ...
0
votes
1
answer
73
views
Rebasing on top of master: what if same commit exists already in master's history?
During development I noticed a bug in someone else's code. It was necessary for me to fix the bug to continue testing my feature, so I created a fixing commit on my branch, and then a new branch from ...
1
vote
1
answer
105
views
Multiple commits are showing while merging hotfix in develop branch - Git
Current Git structure
I created a ticket branch from the develop branch and made some changes. After the release, I merged my ticket branch with both the main and develop branches. Now, I need to ...
1
vote
0
answers
244
views
How to use il2cpp_xxx functions to get class and method information of ilruntime hot fix dll?
For Unity games, we can use il2cpp_domain_get, il2cpp_thread_attach,il2cpp_domain_get_assemblies... functions to get c# class and method information. But now most of the unity games use ilruntime to ...
0
votes
0
answers
147
views
Create minor version from old tag in Github?
I have an application for which we may create a hotfix branch from old tag (which is live in production). Current TAGs can be far ahead of that, as we may not release changes too quickly.
How can I ...
0
votes
0
answers
40
views
Need to merge git branch hotfix into main and dev but GitHub says there is no difference between hotfix and dev (there clearly is)
Dev is based off main; it is a work in progress for a new release, so it has much different code than main. I had to do a quick bugfix on the current version of my software, so I created a hotfix ...
0
votes
1
answer
467
views
Handling hotfixes when working only with git master branch
I keep reading how people are forgoing the develop git branch and doing all work on master - and how this makes everything simpler.
I tried it:
I have a master branch (with linear history) and many ...
2
votes
0
answers
1k
views
Issue with Release-Please Workflow for Generating Git Tags and Release Notes
I am currently utilizing the Release-Please GitHub Action workflow for creating SemVer Git Tags, GitHub Releases, and changelog files. In my GitHub repository, I have separate branches for development,...
0
votes
1
answer
1k
views
Unable to connect to TFS from Visual Studio 2017, getting TF31002: Unable to connect to this Team Foundation Server error
I wonder if anyone could assist me with that. I am unable to connect to TFS from Visual Studio 2017, I get the error specified below
TF31002: Unable to connect to this Team Foundation Server:
http://...
0
votes
1
answer
2k
views
How to avoid version number conflict between master and bugfix branch when using semantic versioning [closed]
A master branch in git following semantic versioning has released below versions in its lifecycle till date.
1.0.0 -> 1.0.1 -> 1.1.0 -> 1.2.0
A hotfix branch is cutoff named hotfix1円.0.0 for ...
-2
votes
1
answer
5k
views
how to fix "Another git process seems to be running in this repository" [duplicate]
start project by git flow
and in process bugfix not commit finish process see error to other order git:
Another git process seems to be running in this repository, e.g.
an editor opened by 'git commit'...
2
votes
1
answer
592
views
How to manage Hotfixes with Flyway
Imagine I'm maintaining a separate branch for Production releases and a separate one for Dev environment (Master branch). Master branch is always ahead of the Production branch and suppose I want to ...
0
votes
0
answers
536
views
Git hotfix branches
i'm trying to find a solution for a git/github related problem i couldn't find anywhere else.
First, some assumptions:
Your team uses 2 branches, development and release (release here is just master). ...
2
votes
1
answer
2k
views
Not able to install Microsoft update (hotfix) - msu through PowerShell script
I am trying to install MSU through below PowerShell script, but its not getting installed. I am not aware of PowerShell scripting. Please someone give me best way to modified this script. I am ...
1
vote
1
answer
2k
views
Viewing a list of Installed Hotfixes/Patches using wmic (HotfixID, InstalledOn and Description)
I found this post with regard to getting a list of installed Hotfixes using wmic qfe list full and @Hackoo replied with the following:
@echo off
Title wmic to get HotfixID
Setlocal ...