Questions tagged [hotfix]

A hotfix is a single, cumulative package that includes information that is used to address a problem in a software product, i.e. a software bug.

118 questions
109
votes
4 answers

Following git-flow how should you handle a hotfix of an earlier release?

If you try to follow the git-flow branching model, documented here and with tools here, how should you handle this situation: You have made a 1.0 release and a 2.0 release. Then you need to make a hotfix for 1.0. You create a hotfix branch off the…
Klas Mellbourn
  • 35,589
  • 18
  • 119
  • 143
41
votes
3 answers

Patch vs. Hotfix vs. Maintenance Release vs. Service Pack vs

When you are somewhere between version 1 and version 2, what do you do to maintain your software? The terms Patch, Hotfix, Maintenance Release, Service Pack, and others are all blurry from my point of view, with different definitions depending on…
Rob Hunter
  • 2,539
  • 4
  • 34
  • 50
13
votes
2 answers

How should gitflow hotfixes work?

We use Gitflow for our web builds, and I have a question about how hotfixes are supposed to work. But first I should explain that we don't quite use the normal Gitflow workflow. I understand that usually you would branch your features, they would…
MattRogowski
  • 646
  • 5
  • 19
13
votes
7 answers

Recommended Post-SP1 Visual Studio 2008 Hotfixes

Today I had to reinstall. I used to have some hotfixes installed for VS2008 but no longer have them and can't remember why they were necessary. I'm expecting any security-related hotfixes to come through Microsoft Update, but I'm interested in VS…
Alex Angas
  • 56,458
  • 39
  • 130
  • 203
12
votes
1 answer

Merging Git Flow Feature Branch after Hotfixes?

I just recently started using git flow and there's something I don't quite understand. First, I never do anything directly on develop. If I do something I either use a start a hotfix or feature. My plugin was at version 1.1.5 when I started a new…
10
votes
4 answers

Hotfix on GitLab

I'm trying to understand GitLab's suggested flow on http://docs.gitlab.com/ee/workflow/gitlab_flow.html. But, I'm not really sure about this statement: If you need to cherry-pick a commit with a hotfix it is common to develop it on a feature…
sancho21
  • 3,219
  • 33
  • 41
10
votes
1 answer

List of available VS2010 hotfixes

With the regularity of VS2010 crashes increasing as I use it, I was looking for a list of hotfixes. This blog post says there is no official list, so let's make one (RTM only please). Or is this page sufficient instead:…
Thomas
  • 3,272
  • 4
  • 32
  • 45
10
votes
4 answers

Unable to create a new hotfix in SourceTree gitflow

Hello this is my git workflow. I'm trying to create by using Sourcetree a new hotfix. Unfortunately I get this error: There is an existing hotfix branch (issue-#001). Finish that one first. I have already finished the issue-#001. Why I'm unable to…
Mazzy
  • 11,255
  • 34
  • 110
  • 179
9
votes
2 answers

Updating App without installing new APK

I'm trying see whether it's possible to remotely update an app on a users phones without downloading an .apk file. (It's an information gathering request from my "boss". He thinks it's possible on iOS so he wants me to check on…
David Lo
  • 95
  • 1
  • 5
8
votes
3 answers

SourceTree: How to create multiple hotfix branches with Git Flow

How can I create a second hotfix branch in Sourcetree when one already exists? Whenever I try to it tells me to finish my current hotfix first. Any way to have multiple hotfix branches?
Andrew
  • 13,934
  • 8
  • 78
  • 93
7
votes
2 answers

Team Foundation: Multiple release structure

I am in need of help setting up a TFS branching structure. The current scenario is as follows, our application is a SaaS, and I believe we need multiple "Release" branches simultaneously. Going through the TFS Branching Guide III, I'm fairly certain…
Matthew
  • 21,467
  • 5
  • 66
  • 95
7
votes
3 answers

What Tridion Hotfixes have been applied?

What's the most reliable method of ascertaining what Tridion Hotfixes have been applied to a system (other than proper previous release documentation)? Specifically I'd like to know for SDL Tridion 2009 but would also be interested in knowing if…
6
votes
3 answers

Git merge strategy for maven project hotfix releases with multiple branches

What is the best practice to deal with recurring merge conflicts that are caused by preparing maven releases in a git flow environment with multiple hotfix branches? (See http://nvie.com/posts/a-successful-git-branching-model/) In this case multiple…
Jotschi
  • 2,943
  • 2
  • 25
  • 45
5
votes
1 answer

How i can check if a particular hotfix (windows update) is installed in my system?

I have some issues with the Riched20.dll file which is used by my application, this problem is fixed applying the KB884047 hotfix, in order to avoid problems with old windows versions, I want to detect when this hotfix is applied in the system, so…
Salvador
  • 15,053
  • 31
  • 128
  • 232
5
votes
1 answer

How to make gitflow allow multiple hotfix creation?

I'm struggling to set gitflow to allow multiple hotfixes creation... I've run the commands: git config --add gitflow.multi-hotfix true git config --global gitflow.multi-hotfix true And when I run: git config --list git config --global --list I can…
Liron
  • 101
  • 1
  • 5
1
2 3 4 5 6 7 8