active questions tagged maintenance - Stack Overflow most recent 30 from stackoverflow.com 2009-12-19T00:24:31Z http://stackoverflow.com/feeds/tag/maintenance http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/269352/patch-vs-hotfix-vs-maintenance-release-vs-service-pack-vs 1 Patch vs. Hotfix vs. Maintenance Release vs. Service Pack vs.... Rob Hunter 2008-11-06T16:35:37Z 2009-12-17T22:33:27Z <p>When you are somewhere between version 1 and version 2, what do you do to maintain your software?</p> <p>The terms Patch, Hotfix, Maintenance Release, Service Pack, and others are all blurry from my point of view, with different definitions depending on who you talk to.</p> <p>What do you call your incremental maintenance efforts between releases?</p> http://stackoverflow.com/questions/1039362/tips-for-maintaining-an-internal-maven-repository 9 Tips for maintaining an internal Maven Repository? cwash 2009-06-24T16:11:38Z 2009-12-16T17:16:47Z <p>I'm interested in maintaining a <a href="http://en.wikipedia.org/wiki/Apache%5FMaven" rel="nofollow">Maven</a> 2 repository for my organization. What are the some of the pointers and pitfalls that would help.</p> <p>What are guidelines for users to follow when setting up standards for downloading from or publishing their own artifacts to the repository when releasing their code? What kinds of governance/rules do you have in place for this type of thing? What do you include about it in your developer's guide/documentation?</p> <p><strong>UPDATE</strong>: Answers so far have discussed technology options for the repository, but any suggestions or recommendations w.r.t how you work with the repository? Things like repository groups, external repository proxying, etc.?</p> http://stackoverflow.com/questions/523222/coding-priorities-performance-maintainability-reusability 4 Coding Priorities: Performance, Maintainability, Reusability? GuinnessFan 2009-02-07T05:43:58Z 2009-12-16T08:55:55Z <p>This came about mainly due to answers to SQL questions. UDF's and Sub Queries are intentionally omitted because of performance. I didn't include reliability not that it should be taken for granted, but the code has to work.</p> <p>Does performance always come first? So many answers are provided with performance as the main priority. My users seem to be more concerned with how quickly the code can be modified. So a report takes 15 seconds instead of 12 to run. They can live with that as long as I'm not making excuses for not providing solutions.</p> <p>Obviously if the 15 seconds turns into 15 minutes, there is an issue, but users want the functionality. They want the application to adapt with the business rule changes and enhancement requests. I want to be able to look at the code 6 months from now and be able to make the change in one easily identified spot and not chase down all those places soneone copied and pasted code because they thought calling another function or sub routine or Udf would hinder performance. </p> <p>All that being said, I would order: Maintainability (Change is a fact of life.), Performance (No one likes to stare at the hourglass.), Reusability (Difficult to determine what code should be used again.).</p> http://stackoverflow.com/questions/1912745/keep-a-tfs-source-backup-in-visual-source-safe-possible 0 Keep a TFS source backup in Visual Source Safe. Possible? Ramiz Uddin 2009-12-16T06:40:16Z 2009-12-16T07:11:28Z <p>We moved from Visual Source Safe to Team Foundation Server. Can I sync. TFS source control to Visual Source Safe? I would like to keep a backup of Team Foundation Server source control in Visual Source Safe. Just to have a backup server ready in case the Team Foundation Server rot out and we can quickly shift back to Visual Source Safe server which we once used to work with.</p> <p>Thanks.</p> http://stackoverflow.com/questions/114332/visual-studio-setup-problem-a-problem-has-been-encountered-while-loading-the-s 39 Visual Studio setup problem - 'A problem has been encountered while loading the setup components. Canceling setup.' kronoz 2008-09-22T11:30:01Z 2009-12-14T20:25:56Z <p>Hi All,</p> <p>I've had a <em>serious</em> issue with my Visual Studio 2008 setup. I receive the ever-so-useful error 'A problem has been encountered while loading the setup components. Canceling setup.' whenever I try to uninstall, reinstall or repair Visual Studio 2008 (team system version). If I can't resolve this issue I have no choice but to completely wipe my computer and start again which will take all day long! I've recently received very strange errors when trying to build projects regarding components running out of memory (despite having ~2gb physical memory free at the time) which has rendered my current VS install useless.</p> <p>Note I installed VS2005 shell version using the vs_setup.msi file in the SQL Server folder <em>after</em> I had installed VS2008, in order to gain access to the SQL Server 2005 Reporting Services designer in Business Intelligence Development Studio (this is inexplicably unavailable in VS2008).</p> <p>Does anyone have any solutions to this problem?</p> <p><strong>P.S.</strong>: I know this isn't directly related to programming, however I feel this <em>is</em> appropriate to SO as it is directly related to my <em>ability</em> to program at all!</p> <p><strong>Note</strong>: A colleague found a <a href="#114781" rel="nofollow">solution to this problem</a>, hopefully this should help others with this problem.</p> http://stackoverflow.com/questions/1318972/deleting-millions-of-rows-in-mysql 5 Deleting millions of rows in MySQL Steven Surowiec 2009-08-23T16:39:32Z 2009-12-14T12:46:12Z <p>I recently found and fixed a bug in a site I was working on that resulted in millions of duplicate rows of data in a table that will be quite large even without them (still in the millions). I can easily find these duplicate rows and can run a single delete query to kill them all. The problem is that trying to delete this many rows in one shot locks up the table for a long time, which I would like to avoid if possible. The only ways I can see to get rid of these rows, without taking down the site (by locking up the table) are:</p> <ol> <li>Write a script that will execute thousands of smaller delete queries in a loop. This will theoretically get around the locked table issue because other queries will be able to make it into the queue and run in between the deletes. But it will still spike the load on the database quite a bit and will take a long time to run.</li> <li>Rename the table and recreate the existing table (it'll now be empty). Then do my cleanup on the renamed table. Rename the new table, name the old one back and merge the new rows into the renamed table. This is way takes considerably more steps, but should get the job done with minimal interruption. The only tricky part here is that the table in question is a reporting table, so once it's renamed out of the way and the empty one put in its place all historic reports go away until I put it back in place. Plus the merging process could be a bit of a pain because of the type of data being stored. Overall this is my likely choice right now.</li> </ol> <p>I was just wondering if anyone else has had this problem before and, if so, how you dealt with it without taking down the site and, hopefully, with minimal if any interruption to the users? If I go with number 2, or a different, similar, approach, I can schedule the stuff to run late at night and do the merge early the next morning and just let the users know ahead of time, so that's not a huge deal. I'm just looking to see if anyone has any ideas for a better, or easier, way to do the cleanup.</p> http://stackoverflow.com/questions/1886115/database-maintenance 1 Database Maintenance AngryHacker 2009-12-11T06:06:59Z 2009-12-11T06:38:52Z <p>I am trying to do some basic maintenance on a sql server 2005 database. It's fairly small (10gb in size, 50 tables or so).</p> <p>I am first doing the following on all tables:</p> <pre><code>update statistics [table name] with fullscan </code></pre> <p>followed by reindexing all tables.</p> <pre><code>DBCC REINDEX ([table name], ...) </code></pre> <p>Is this correct? Is the sequence right? Do I need to do both or is one enough?</p> http://stackoverflow.com/questions/1830455/how-to-reduce-maintenance-costs 3 How to reduce maintenance costs Jack 2009-12-02T03:17:02Z 2009-12-02T17:58:58Z <p>It has come to the point where 4 out of 5 developers are full time dealing with maintenance or support issues.</p> <p>This is mainly due to the total lack of accountability (read:reviews etc) during the development process and having dozens of small in-house legacy applications everywhere which everyone is scared to replace.</p> <p>Management is hitting dept hard about little progress and projects are way behind so things like 'reviews' and 'testing' are seen as a waste of time.</p> <p><strong>How would you even begin to reduce this huge overhead?</strong></p> http://stackoverflow.com/questions/287331/recommended-techniques-for-field-updating-embedded-linux-safely 3 Recommended techniques for field updating embedded Linux safely Doug Currie 2008-11-13T15:59:29Z 2009-12-01T05:56:47Z <p>Embedded Linux based devices often require a mechanism to update applications and system files. For example, a (non-networked) lab instrument with a USB port can get software updates from a USB stick. </p> <p>It would be a simple matter to run a script to copy files into place on the device's internal flash memory. However, there is the danger that the device would lose power in the middle of the update, and end up a brick.</p> <p>The situation for application files is a bit easier since there is room to duplicate the application directory, update one copy, and quickly swap old and new directories minimizing the failure window.</p> <p>Things are dicier for kernel and system files since they are spread out throughout the file system.</p> <p>We have used hard and soft links in the file system to identify critical files. We use hashes on files and archives to verify file integrity. We have considered using an emergency ramfs in the kernel to provide a fallback if starting from the updated file system fails.</p> <p>What are your approaches to this requirement?</p> http://stackoverflow.com/questions/128166/sample-sql-script-to-zip-and-transfer-database-backup-file 2 Sample sql script to zip and transfer database backup file winjoy 2008-09-24T16:20:14Z 2009-11-24T01:39:17Z <p>I was looking for a sample sql script to zip my database backup file (.bak) and transfer to a remote location. Please share if you have it with you.</p> http://stackoverflow.com/questions/1783230/when-do-you-compact-a-sql-server-database 4 When do you compact a Sql Server Database? Mike Fielden 2009-11-23T13:48:22Z 2009-11-23T14:36:43Z <p>We have a SQL Server 2000 database that holds most of our teams databases running on a relatively old server. </p> <p>Lately we have been having some weird slow down issues on some of our database calls in various applications. (So I know it isn't application specific) </p> <p>It was mentioned to me that we should look into compacting some of our databases. What are some general rules of thumb for doing this?</p> <p>Is compacting a database just considered to be general maintenance? Is there a magic number of databases, tables, or records that might lead to this slow down and thus be helped be a compaction?</p> <p>Number of actively used databases: 6</p> <p>Average size of database: 20MB with the exception of Fogbugz, that is about 11000MB</p> http://stackoverflow.com/questions/1612946/what-is-the-thing-that-irritates-you-while-doing-maintenance-coding 11 What is the thing that irritates you while doing maintenance coding? JMSA 2009-10-23T11:51:41Z 2009-11-12T18:35:19Z <p>What is the thing that irritates you while doing maintenance coding?</p> <p>Can you point out some points for easier maintenance for me and my fellow programmers?</p> http://stackoverflow.com/questions/729197/sql-exclude-a-column-using-select-except-columna-from-tablea 3 SQL exclude a column using SELECT * [except columnA] FROM tableA? uuɐɯǝʃǝs 2009-04-08T09:15:28Z 2009-11-11T00:35:20Z <p>We all know that to select all columns from a table, we can use</p> <pre><code>SELECT * FROM tableA </code></pre> <p>Is there a way to exclude column(s) from a table without specifying all the columns?</p> <pre><code>SELECT * [except columnA] FROM tableA </code></pre> <p>The only way that I know is to manually specify all the columns and exclude the unwanted column. This is really time consuming so I'm looking for ways to save time and effort on this, as well as future maintenance should the table has more/less columns.</p> <p>thanks!</p> http://stackoverflow.com/questions/1235188/how-to-maintain-a-locally-modified-copy-of-an-external-svn-repository 2 How to maintain a locally modified copy of an external svn repository Ola Herrdahl 2009-08-05T19:16:55Z 2009-11-10T19:57:29Z <p>I have checked out an external svn repository that I have applied a couple of patches to.<br /> (Applying the patches can only be done manually due to conflicts.)</p> <p>Now I want to be able to maintain this local copy of the remote repository in a proper way.<br /> (I do not have any other access rights than read on the remote repository.)</p> <p>First of all I need to be able to check-in my local changes in some sort of source control system since there were manual steps involved in applying the patches. </p> <p>And secondly I still want to be able to receive updates from the remote repository.</p> <p>What is the best way to achieve this?</p> http://stackoverflow.com/questions/1679835/do-you-develop-your-perl-applications-as-cpan-modules 15 Do you develop your Perl applications as CPAN modules? zoul 2009-11-05T11:06:07Z 2009-11-10T14:26:44Z <p>Recently I read a blog post saying that it is a good practice to develop Perl applications just as you would develop a CPAN module. (<a href="http://perlbuzz.com/2008/10/write-your-code-like-its-going-on-cpan.html" rel="nofollow">Here it is</a> – thanks David!) One of the reasons given was that you could simply run <code>cpan .</code> in the project dir to install all the dependencies. This sounds reasonable, and I also like the “uniform interface” that you get. When you come across such an application, you know what the makefile does etc. What are other advantages and disadvantages to this approach?</p> <p><hr></p> <p><em>Update:</em> Thanks for the answers. I’ve got one more question about the dependency installing, I’ll <a href="http://stackoverflow.com/questions/1708332">post it separately</a>.</p> http://stackoverflow.com/questions/1701584/proper-status-code-for-a-maintenance-page-redirect 2 Proper status code for a maintenance page redirect? Thody 2009-11-09T15:04:45Z 2009-11-09T15:09:06Z <p>While performing some upcoming maintenance, I'm going to have to redirect all site traffic to a maintenance page briefly. What's the proper status code to use for the redirect?</p> <p>503 makes sense, but it's not technically a redirection status. 302 is a temp redirect, but wondering if that might have implications if the site is being spidered at the time.</p> http://stackoverflow.com/questions/1603597/what-is-a-good-early-termination-fee-for-maintenance-contracts 1 What is a good early termination fee for maintenance contracts? Eddie 2009-10-21T21:00:22Z 2009-11-09T13:29:41Z <p>Just got back from a client that asked to have an early termination clause added into a proposed maintenance contract. The contract is to be for a full year with option to renew. The client may pay monthly or all upfront. I'm wondering what is a good early termination fee assuming I should have one?</p> <ul> <li>No fee</li> <li>Fixed fee</li> <li>2-4 months of monthly fees</li> <li>Half of the remainder of the contract</li> <li>No early termination option</li> </ul> <p>And what if the client pays for a whole year worth of fees upfront and then wants out halfway through the year? Refund or no refund?</p> http://stackoverflow.com/questions/735547/script-for-maintaining-folders 0 Script for Maintaining folders Huskeraider 2009-04-09T19:16:43Z 2009-10-30T13:00:01Z <p>I am trying to create a script that will keep 5 folders or 6 months worth of folders, whichever is greatest. I would have to use the created date for the 6month part of the script since the naming convention is by version rather than date. </p> <p>would anybody have any ideas about the best way to proceed?</p> <p>Thanks.</p> http://stackoverflow.com/questions/1588732/maintaining-traceability-up-to-date-as-project-evolves 3 Maintaining traceability up-to-date as project evolves Cătălin Pitiș 2009-10-19T13:41:17Z 2009-10-20T20:39:05Z <p>During various projects, I needed to make sure that the use case model I developed during the analysis phase is covering the requirements of the project. For that, I was able to have some degree of traceability between requirement statements (uniquely identified) and use cases (also uniquely identified). In some cases, enabling traceability implied some additional effort that I considered (and later proved) to be a good investment.</p> <p>Now, the biggest problem I faced was to maintain this traceability later, when things started to change (as a result of change requests, or as a result of use case changes). </p> <p><strong>Any ideas of best practices for traceability maintenance?</strong></p> <p>(It can apply to other items in the project - e.g. use cases and test cases, or requirements and acceptance test cases)</p> <p><strong>Later edit</strong> Tools might help, but they can't detect gaps or errors in traceability. Navigation... maybe, but no warranty that the traceability is up-to-date or correct after applying the changes.</p> http://stackoverflow.com/questions/1562454/have-you-ever-sacrificed-bleeding-edge-insert-language-framework-here-for-a-job 2 Have you ever sacrificed bleeding-edge [insert language/framework here] for a job with less stress? Beavis 2009-10-13T19:33:53Z 2009-10-13T21:04:40Z <p>I may have a situation in the future to take a less stressful job, which pays great and has excellent benefits, while working with old technology. Not Cobol old, but a generation back from where I am today.</p> <p>This is a double-edged sword for me.</p> <p>I have never felt comfortable in dev shops. It doesn't appeal to me for some reason. I enjoy programming but I like to interface with business users. I don't wish to interact with geeks 24/7. I like to be a big fish in a small pond.</p> <p>On the flip side - I do love new technology. So, while not a deal breaker, it's going to hurt a bit to move a generation back from where I am currently. However, there is possibility of software rewrites down the line, so all hope is not lost. And who knows, maybe I can be a catalyst for change in such a small company?</p> <p>Anyone else out there like me? If so, how has it worked out for you?</p> <p>Good move?</p> <p>Bad move?</p> http://stackoverflow.com/questions/1558401/programming-ratios 2 Programming Ratios Jon 2009-10-13T05:52:53Z 2009-10-13T06:04:51Z <p>Hi.</p> <p>Has anybody seen studies of ratios of maintainance programming to new development?</p> <p>Thanks.</p> http://stackoverflow.com/questions/1551461/how-to-test-for-test-for-application-database-and-date-changes-without-a-triggere 0 How to test for test for application,database and date changes without a triggered function optician 2009-10-11T19:00:00Z 2009-10-12T10:32:00Z <p>I'm trying to plan how to build some functionality into my new app, and am unsure if there is a "correct" way to achieve what I am looking for.</p> <p>There are certain things that I want to get done with my site, say when a certain dateTime is matched aginst some other date time, then send email.</p> <p>Or for example, consider the badges on stackoverflow, do you think it is done with some big loop testing for people qualifing for new badges, or is there some design pattern I am missing.</p> <p>This is my current plan.</p> <ol> <li><p>Setup a function, that will be triggered every 1-10 mins, which will check the db for any rules being met, and therefore action to be taken.</p></li> <li><p>Add these checks on a per user basis, when a user looks at any records related to them, or logs in.</p></li> </ol> <p>If anyone could shed any light on how for example ebay would handle it's email notifications, I think that would point me in the right direction.</p> <p>Thanks for any help. Even the name of what I am looking for would be greatly helpful.</p> http://stackoverflow.com/questions/1502077/link-checking-solution 0 Link checking solution. fighella 2009-10-01T05:41:15Z 2009-10-01T05:50:18Z <p>We have over 10, 000 links to websites added by clients... Can anyone recommend an approach to monitor the status of these linkouts so I can keep track of if they are online... Would I be better of running a daily script? or is there another way to do this?</p> <p>I would be looking for a solution that would alert me when any of these links were down, and ideally update the database if the site we were linking out to was down.</p> <p>We are using classic ASP.</p> http://stackoverflow.com/questions/1498504/looking-for-reference-quote-source-on-code-maintenance 1 Looking for reference/quote/source on code maintenance Joel Coehoorn 2009-09-30T14:32:59Z 2009-09-30T14:47:48Z <p>I have a vague recollection from way back in college of one my professors saying something to the effect that after only 3 weeks (on average) of not looking at the code for a program, studies showed the original author of the program had no benefit working with/maintaining that code vs a developer who had never seen the code. </p> <p>Going back I want to find a source for that statement, but I can't find it anywhere. Am I hallucinating? Or can someone point me in the right direction?</p> http://stackoverflow.com/questions/1478427/has-anyone-ever-observed-any-ratio-trend-of-the-quantity-of-software-maintenance 1 Has anyone ever observed any ratio trend of the quantity of software maintenance time compared to the number of users of your software? Ryan 2009-09-25T16:55:46Z 2009-09-25T18:05:53Z <p>So for example have you noticed a big difference in support request volume on software being used by 1000 users compared to just 50? Or is it more related to how solid the software actually is? It's almost like calculating how valuable it is for us to take the extra time to make the software properly, which would be a nice thing to sell management on right guys?</p> http://stackoverflow.com/questions/1456496/how-do-i-monitor-and-find-unused-indexes-in-sql-database 1 How do I monitor and find unused indexes in sql database Ole Lynge 2009-09-21T19:53:02Z 2009-09-21T20:00:18Z <p>I would like to monitor index usage for an sql database, in order to find unused indexes and then drop them. How can I monitor index usage most efficiently? And which scripts could be useful?</p> <p>(I'm aware of <a href="http://stackoverflow.com/questions/290773/identifying-unused-objects-in-microsoft-sql-server-2005">this question about identifying unused objects</a>, but this applies only to the current run of the sql server. I would like to monitor index usage over a period of time...)</p> http://stackoverflow.com/questions/1396848/how-to-implement-maintenance-mode-on-already-established-website 3 How to implement "Maintenance Mode" on already established website justinl 2009-09-08T23:19:54Z 2009-09-15T09:00:10Z <p>I have built a fairly robust website (PHP) with more than 60 pages. I have only now realized (unfortunately) that I should have built in an "In Maintenance Mode" feature to allow an admin to temporarily disable the website and point it to a Maintenance Mode page. This would only allow those logged in as an admin to view the website.</p> <p>The options I see are:</p> <ol> <li>Add a new "include" file to the top of every single PHP page.</li> <li>I have one include that is used to display the navigation bar on every page (navigation class). I could write the Maintenance Mode code in this class.</li> </ol> <p>Do I have any other options? The 1st option doesn't seem like the most efficient, and the 2nd one just seems like bag programming. Is there any other better way to include a new file on every single php file?</p> <p>Thanks!</p> <p>ps - the site is not launched yet</p> http://stackoverflow.com/questions/1377384/policy-on-maintenance-releases-vs-normal-releases 3 Policy on maintenance releases vs normal releases? Andrew Swan 2009-09-04T05:33:25Z 2009-09-13T21:22:10Z <p>My company is struggling with the question of maintenance releases versus "normal" releases, in the context of an application installed on-site at large organisations who pay for support. First let me define my terms:</p> <ul> <li>Imagine we've released versions 1.0, 1.1, and 1.2 of the product. These are what I call "<strong>normal</strong>" releases, i.e. they are the next release from the main branch of development, incorporating all the latest and greatest bug fixes and enhancements (possibly tens of each per release).</li> <li>Now imagine some bigshot customer on 1.0 reports a show-stopping issue that nobody's encountered before. The problem still exists in 1.2, and unfortunately 1.3 isn't due out for several weeks or months. So we branch our code at 1.0 to create a 1.0.1 "<strong>maintenance</strong>" release, containing just the one change that fixes the issue.</li> </ul> <p>This approach makes the customer happy because we fix their issue within a day or so, instead of making them wait weeks until the next normal release. Also, because the maintenance release only contains one small change, they don't need to go through an extensive UAT process, whereas if they upgrade to the next normal release, which could be several versions on, they would be receiving maybe 30 or 40 product changes that (in their risk-averse opinion) require extensive UAT.</p> <p>The problem is that:</p> <ul> <li>It's costly for us to create and support multiple versions of our software</li> <li>It allows stick-in-the-mud customers to fall too far behind the latest version</li> <li>It complicates the process of eventually upgrading those customers in the future, as their installation is subtly different from every other 1.0 customer (upgrading their database is particularly complicated if the maintenance release changed it somehow)</li> </ul> <p>So I was wondering what is everyone else's stance on this issue? How do you keep the customer happy without making a rod for your own back through a proliferation of maintenance releases? For example, do you allow some categories of fix to be done as a maintenance release, but insist that other types are done in the next normal release?</p> <p><em>Clarification: writing bug-free software isn't a total solution, because an "issue" in the above context could be an unforeseeable change to the behaviour of an external system upon which our product depends.</em></p> http://stackoverflow.com/questions/1416387/why-separate-maintenance-work-from-development-work 8 Why separate maintenance work from development work? Tungano 2009-09-12T23:02:33Z 2009-09-13T04:24:09Z <p>I work at a company where maintenance is being done by the same team that brings life to a piece of software.</p> <p>Very often I hear about organizations that have a separate maintenance team or a maintenance programmer. What I wonder about is -what- the reasoning behind this is?</p> <p>Apart from ditching 'old code' to lesser mortals, is there any?</p> <p>The lessons learned from maintaining your own "junk" are of much higher value? Isn't fixing defects far more effective when done by those who caused them to begin with?</p> <p>Am I missing any real reasons why it might be beneficial to have a separate maintenance team?</p> http://stackoverflow.com/questions/1410051/mantain-old-releases-without-creating-long-lived-branches 6 Mantain old releases without creating long-lived branches tim4dev 2009-09-11T09:53:15Z 2009-09-11T11:03:12Z <p>Hi.</p> <p>I'm newbie in Git.</p> <p>I have read: "Pro Git : Maintaining a Project" (book) and Git : Documentation/howto/maintain-git.txt</p> <p>Tough question for me: how to mantain the old releases without creating a separate long-lived branches. In other words, I am interested how to working with a branch "maint" in the project Git.</p> <p>In example (merging with topic branches and the integration of contributors of patches are not shown, other branches of "next", "pu" is also not shown here).</p> <p>These images can be viewed also <a href="http://gist.github.com/185129" rel="nofollow">at here</a>.</p> <pre><code> +--master | +--maint | (c1)-&gt;(c2) | +--tag : feature-release v1.0 </code></pre> <p>Next time:</p> <pre><code>tag:feature-rel v1.0--+ +--master | | (c1)-&gt;(c2)-&gt;(c)-&gt;(c)-&gt;(c)-&gt;(c) | +-&gt;(c)-&gt;(c)-&gt;(c) | +--maint | +--tag:maint-rel v1.0.1 </code></pre> <p>Next, as described in "maintain-git.txt", run :</p> <pre><code> $ git checkout master $ git merge maint </code></pre> <p>Result:</p> <pre><code>tag:feature-rel v1.0--+ +--master | | (c1)-&gt;(c2)-&gt;(c)-&gt;(c)-&gt;(c)-&gt;(c)-&gt;(c100) | / +-&gt;(c)-&gt;(c)-&gt;(c50)-----' | +--maint | +--tag:maint-rel v1.0.1 </code></pre> <p>Next time:</p> <pre><code> +--master | +--tag:feature-rel v2.0 | ...-&gt;(c)-&gt;(c100)-&gt;(c101)-&gt;(c102) / ...-&gt;(c50)---' | +--maint | +--tag:maint-rel v1.0.1 </code></pre> <p>And at this point I have few questions:</p> <ol> <li>What to do with the branch "maint" ? I understand pointer "maint" should be moved in the same position as the "master" ? How ?</li> <li>Afterwards how then to make a fork of a branch "maint" from branch "master" ?</li> <li>If appear a patch (elapse a very long time, for example, the current feature-release v10.0 ) for the old "tag:maint-rel v1.0.1", how to integrate it in the "maint" and in "master"?</li> </ol> <p>Thanks.</p>