active questions tagged scm - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T19:48:16Z http://stackoverflow.com/feeds/tag/scm http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1812723/which-scm-and-issue-tracker-to-use-for-personal-work 0 Which SCM and Issue tracker to use for personal work? peakit 2009-11-28T15:07:14Z 2009-11-29T10:50:49Z <p>I am planning to bring some "peace" (you may call it organization) to the personal work (small projects, etc.) I do at home.</p> <p>I would like to use a <code>SCM</code> and an <code>issue tracker</code> which can capture the commits and show them as changesets etc. automatically.</p> <p><strong>Note</strong> that all the above softwares are supposed to be for personal usage so would prefer something from <code>FOSS</code> and also they need to be ultra lightweight in terms of the system requirements.</p> <p>What do you recommend?</p> <p><strong>EDIT:</strong> Following are some of my doubts/concerns:</p> <ol> <li><code>Git</code> with <code>GitHub</code> looks good. But I am not very comfortable with making my code base public on <code>GitHub</code>. What do you say?</li> <li>Does <code>GitHub</code> provides Issue tracker? I mean, can I open up an issue on <code>GitHub</code> provided issue tracker and commit against that issue?</li> <li>Can I have a local <code>SCM</code> (on my laptop) and use some <code>remote issue tracker</code> like <a href="http://www.fogcreek.com/FogBugz/StudentAndStartup.html" rel="nofollow">FogBugz</a>? But I just don't understand how would a remote issue tracker will capture my commits. Any idea?</li> </ol> <p><strong>UPDATE:</strong></p> <p>I finally went with <code>Mercurial</code> and <a href="http://bigbucket.org" rel="nofollow">BigBucket</a>. Working awesome so far!</p> http://stackoverflow.com/questions/1766399/issue-tracking-software-that-support-multiple-repositories 1 Issue tracking software that support multiple repositories Erick 2009-11-19T20:47:02Z 2009-11-27T10:28:08Z <p>We are just starting to be using subversion as our SCM software at my job, I would need some advise here.</p> <p>My project manager would like to use only one instance of a software to manage every projects we have (so we don't want to install a trac instance for each project we start it's kind of an overload).I heard trac can support multiple repositories but it is experimental only and we are looking for something stable. </p> <p>If subversion is not the way to go (IE: no software available) we might consider to switch to something else (CVS/VSS/Git/etc..) that would have a software that supports this function.</p> http://stackoverflow.com/questions/1604613/workflow-best-practice-with-git-and-github 5 Workflow best practice with git and github? kylemac 2009-10-22T01:43:25Z 2009-11-24T15:36:51Z <p>I have been using git and github with my small team of developers for our projects. I can't help but think that we aren't doing it right. I am interested to hear how others use this workflow within their projects.</p> <p><strong>How we use it:</strong> We branch before each change, merge back into the master, commit locally and push to our github repo. We then ssh into our testing environment and pull the master branch of the github repo. We haven't quite grasped <code>rebase</code>, <code>fetch</code> or <code>tagging</code> just yet.</p> <p><strong>How I would like to use it:</strong> I would like to be able to ssh into the different servers and pull a specific tagged version, like "phase 1" into the server. Is this possible, or would I need two different github repos? </p> <p>Are you supposed to <code>git pull</code>a specific branch into the web servers or create a new alias to <code>git push</code> to?</p> <p>Can you control release candidates or environments (testing, development, production) within one git repository? or do you need multiple?</p> <p>If pulling is the solution, can you pull a specific <code>tag</code> ?</p> http://stackoverflow.com/questions/1778602/mercurial-bookmarks-and-git-like-branching 1 Mercurial Bookmarks and 'Git like branching' buymeasoda 2009-11-22T12:40:04Z 2009-11-22T23:25:22Z <p>I am not having any luck using Bookmarks in Mercurial for Git like branching.</p> <p>From the article: <a href="http://mercurial.selenic.com/wiki/BookmarksExtension" rel="nofollow">http://mercurial.selenic.com/wiki/BookmarksExtension</a>, I've set "track.current" to true in my .hgrc file. </p> <p>Excerpt below:</p> <blockquote> <p>By default, when several bookmarks point to the same changeset, they will all move forward together. It is possible to obtain a more Git-like experience by adding the following configuration option to your .hgrc</p> <pre><code>[bookmarks] track.current = True </code></pre> </blockquote> <p>However, as soon as I start trying to do parallel / independent development on more than one bookmark, then switch back and forth between the bookmarks, I run into the following:</p> <pre><code>abort: crosses branches (use 'hg merge' or 'hg update -C') </code></pre> <p>Example to reproduce:</p> <pre><code># Make a new directory and Mercurial repository $ mkdir bookmark $ cd bookmark $ hg init # Create two bookmarks $ hg bookmark bk1 $ hg bookmark bk2 # Checkout bk1 $ hg update bk1 0 files updated, 0 files merged, 0 files removed, 0 files unresolved # Create and commit a file to bk1 $ touch bk1.txt $ hg add adding bk1.txt $ hg commit -m "bk1 file" # Checkout bk2 $ hg update bk2 0 files updated, 0 files merged, 1 files removed, 0 files unresolved # Create and commit a file to bk2 $ touch bk2.txt $ hg add adding bk2.txt $ hg commit -m "bk2 file" created new head # Checkout bk1 $ hg up bk1 abort: crosses branches (use 'hg merge' or 'hg update -C') </code></pre> <p>Is this normal behavior, for there to be "crosses branches" forcing a merge or file overwrite, when moving between bookmarks?</p> <p>For a 'Git-like experience' I would expect to be able to flick back and forth between bk1 and bk2, committing and developing on either, merging if and when I needed to.</p> http://stackoverflow.com/questions/40495/bug-tracker-setup-with-git-integration 4 Bug tracker setup with Git integration? Jordi Bunster 2008-09-02T20:17:11Z 2009-11-22T00:30:41Z <p>I know I can do most of this by hacking Trac and using Git hooks, but I was wondering if someone has / knows of something ready.</p> <p>Commenting on (and closing) tickets from commit messages would be nice, specially if the diff appears inline with the comment/closing remark.</p> <p>sha1 hashes should be auto-linked to gitweb/cigt/custom git browser.</p> <p>I tried the GitPlugin for Trac, but the code browser was soo slow... any alternatives?</p> http://stackoverflow.com/questions/43598/suggestions-for-a-good-commit-message-format-guideline 14 Suggestions for a good commit message: format/guideline? aidos 2008-09-04T12:17:10Z 2009-11-20T17:56:43Z <p>I'm at the beginning of a new project, and I'm trying to set up the repository in a smart fashion and establish some code style guidelines for everyone to be able to concentrate on code.</p> <p>Most of it is done, but I'm still unsure about the format I should enforce for commit messages. I'm all for freedom and just telling people to make them clear and thorough, but I've that it rarely works, people having very different notions of "clear" :).</p> <p>And so far, I've never found a satisfying scheme. What I most often do is: a one line summary of the commit, then bullet points describing each change in more detail.</p> <p>But often it's kind of hard to decide what deserves a bullet point and what doesn't, and some sort of classification, by features, file, or minor/major changes would seem appropriate. Sadly each time I try to do that, I end up writing stupidly long commit messages for trivial changes...</p> <p>How do you do it? </p> http://stackoverflow.com/questions/1717048/database-source-control-with-oracle 6 Database source control with Oracle borjab 2009-11-11T18:07:22Z 2009-11-19T23:49:28Z <p>Hi, I have been looking during hours for a way to check in a database into source control. My first idea was a program for calculating database diffs and ask all the developers to imlement their changes as new diff scripts. Now, I find that if I can dump a database into a file I cound check it in and use it as just antother type of file. </p> <p>The main conditions are:</p> <ul> <li>Works for Oracle 9R2 </li> <li>Human readable so we can use diff to see the diferences. (.dmp files doesn't seem readable)</li> <li>All tables in a batch. We have more than 200 tables.</li> <li>It stores BOTH STRUCTURE AND DATA</li> <li>It supports CLOB and RAW Types.</li> <li>It stores Procedures, Packages and its bodies, functions, tables, views, indexes, contraints, Secuences and synonims. </li> <li>It can be turned into an executable script to rebuild the database into a clean machine. </li> <li>Not limitated to really small databases (Supports least 200.000 rows)</li> </ul> <p>It is not easy. I have downloaded a lot of demos that does fail in one way or another.</p> <p>Thanks in advance.</p> <p><strong>EDIT</strong>: I wouldn't mind alternatives aproaches provided that they allows us to check a working system against our release DATABASE STRUCTURE AND OBJECTS + DATA in a bath mode.</p> <p>By the way. Our project has been developed for years. Some aproaches can be easily implemented when you make a fresh start but seem hard at this point.</p> <p><strong>EDIT</strong>: To understand better the problem let's say that some users can sometimes do changes to the config data in the production eviroment. Or developers might create a new field or alter a view without notice in the realease branch. I need to be aware of this changes or it will be complicated to merge the changes into production. </p> http://stackoverflow.com/questions/1080174/scm-vcs-tracking-directories 1 SCM/VCS: Tracking directories Roger Pate 2009-07-03T17:06:37Z 2009-11-18T07:23:11Z <p>When I first found out that Mercurial tracked <em>files</em> and not directories, I was a bit disappointed. (This means you can't represent an empty directory in the repo.) However, it doesn't seem to be an issue in practice, and makes some things a tad easier for me. <strong>How about other SCM systems?</strong> (Edit this post to add them.) <strong>What advantages or disadvantages have you found by not tracking directories?</strong> (Each one separately in an answer, please.)</p> <p><strong>Do</strong> track directories:</p> <ul> <li>Subversion</li> <li>Bazaar/bzr</li> <li>(add one!)</li> </ul> <p><strong>Do NOT</strong> track directories:</p> <ul> <li>Mercurial/hg</li> <li>git</li> <li>(add one!)</li> </ul> http://stackoverflow.com/questions/1682740/best-solution-for-integrated-bug-tracking-wiki-and-version-control 0 Best solution for integrated bug tracking, wiki and version control Jader Dias 2009-11-05T18:50:31Z 2009-11-17T11:40:07Z <p>I love the Google Project Hosting web app. It includes bug tracking, wiki and SCM in one interface. (Example: <a href="http://code.google.com/p/n2markdowneditors/" rel="nofollow">WMD Editor</a>)</p> <p>This solution is closed source and not for sale. While searching similar solutions I found <a href="http://trac.edgewall.org/" rel="nofollow">Trac</a> which has a rougher interface.</p> <p>Could you list similar solutions?</p> <p><a href="http://stackoverflow.com/questions/1170831/distributed-revision-control-wiki-and-bug-tracking-all-in-one">Someone asked the same question, but specified Git as the SCM.</a></p> http://stackoverflow.com/questions/1728987/what-is-the-best-practice-for-setting-the-sccauxpath-property-in-a-visual-basic 0 What is the best practice for setting the SccAuxPath property in a Visual Basic .NET project for a distributed team? Luke Girvin 2009-11-13T12:37:46Z 2009-11-17T10:59:15Z <p>We've recently moved to Team System and now a remote team needs access to our source. However, they use a different IP address to access the Team System server, and whenever they try to open a project, they are prompted to check out and change the project. Is there a way to work around this? It seems to be the 'SccAuxPath' property which is the problem.</p> <p>EDIT: I found <a href="http://msdn.microsoft.com/en-us/library/bb668967.aspx" rel="nofollow">this article</a> which explains that there are three ways to support distributed teams using TFS - VPN, reverse proxy, and a hosted solution. I'm accepting Jason Whitehorn's answer as he's suggesting the first option, VPN, which seems the best. If this isn't possible for us I'll suggest the reverse proxy option.</p> http://stackoverflow.com/questions/1117018/should-universities-be-teaching-scm-methodology-skills 13 Should universities be teaching SCM/methodology skills? Yuval A 2009-07-12T21:46:19Z 2009-11-17T04:11:06Z <p>Most CS programs these days do not teach skills such as:</p> <ul> <li>source control</li> <li>configuration management</li> <li>integration (and continuous integration)</li> <li>code readability (AKA how to comment <em>correctly</em>)</li> <li>programming methodologies</li> <li>bug tracking</li> </ul> <p>These topics are considered <em>easy enough</em> to be taught on-the-job (OTJ), even though mastering them can be very complex.</p> <p>Should these skills be taught in universities? Can a real-world programmer really do without these? Is it sufficient to learn them OTJ, as part of a first-year programming experience?</p> http://stackoverflow.com/questions/1741540/illegal-instruction-in-service-using-scm-in-vc 0 Illegal Instruction in service using SCM in VC++ Kasma 2009-11-16T11:15:24Z 2009-11-16T11:15:24Z <p>Hi guys,</p> <p>I have issue in service created using VC++ code.</p> <p>as my ServiceMain function ends. it returns following error in End of the function(in release it crashes.)</p> <p>Unhandled exception at 0x0012e3b4 in Adiserv.exe: 0xC000001D: Illegal Instruction.</p> <p>i am unable to figure out the issue.</p> <p>can you help me out...</p> <p>Thanks Ashish</p> http://stackoverflow.com/questions/1341538/where-does-visual-studio-save-scm-related-info 1 Where does Visual Studio save SCM-related info? Cristi Diaconescu 2009-08-27T14:37:16Z 2009-11-13T18:35:12Z <p>I'm using a Visual Studio (2005) + Perforce combination for a particular solution, and I'd like to manually modify a Perforce parameter (the client name). </p> <p>From VS's "Change Source Control" dialog it seems that SCM info is saved per-project; however, the .csproj.vspscc files don't seem to hold any Perforce-related information, and neither does .vssscc </p> <p>Here's how a .vspscc file looks like:</p> <pre><code>"" { "FILE_VERSION" = "9237" "ENLISTMENT_CHOICE" = "NEVER" "PROJECT_FILE_RELATIVE_PATH" = "" "NUMBER_OF_EXCLUDED_FILES" = "0" "ORIGINAL_PROJECT_FILE_PATH" = "" "NUMBER_OF_NESTED_PROJECTS" = "0" "SOURCE_CONTROL_SETTINGS_PROVIDER" = "PROVIDER" } </code></pre> <p>The last line suggests the SCM settings are stored externally, but where?</p> http://stackoverflow.com/questions/1522775/branching-and-merging-strategies 3 Branching and Merging Strategies benPearce 2009-10-05T22:40:07Z 2009-11-12T20:48:15Z <p>I have been tasked with coming up with a strategy for branching, merging and releasing over the next 6 months.</p> <p>The complication comes from the fact the we will be running multiple projects all with different code changes and different release dates but approximately the same development start dates.</p> <p>At present we are using VSS for code management, but are aware that it will probably cause some issues and will be migrating to TFS before new development starts.</p> <p>What strategies should I be employing and what things should I be considering before setting a plan down?</p> <p>Sorry if this is vague, feel free to ask questions and I will update with more information if required.</p> http://stackoverflow.com/questions/179099/buildprocess-for-activex-com-vb6-enterprise-projects 2 Buildprocess for ActiveX / COM / VB6 enterprise projects Jan 2008-10-07T15:39:04Z 2009-11-12T06:17:22Z <p>We have developed a software system using ActiveX/COM (VB6) technology from microsoft. In the last year, i get more and more interested in automated build processes and SCM at a whole. I intensively searched big parts of the web for information about best practices how to do scm with COM based software systems.</p> <p>The "problem" with COM is, that a referencing component holds the reference by an unique interface id. When you recompile the referenced component, the id may change and the reference isn't valid any more. The main problem here is, that the iid is compiled into the binary. So when i don't want to check in the compiled files into version control, every developer has to compile his/her own versions and gets other ids.</p> <p>When i want to check out the source on a clean build machine to compile the system, its just impossible, because all the references are invalid (no binary files, no interface ids).</p> <p>Im just wondering, if there are some best practices floating around, how to set up an automated build sytem for COM projects (VB6)?</p> <p><strong>Edit:</strong> Yes, im aware of the compatibility settings. But take the scenario, where i want to build the wohle system on a clean build machine without any binaries. When you say a project is binary compatible you have to provide the binary with which the project is compatible.</p> <p>I think i have to write a custom build tool, which modifies references and compatibility settings in the project files before and after compiling the projects.</p> <p>Because VB6 / COM is a really wide spread technology, i was just thinking that there has to be a ready to use solution.</p> <p>We normally compile with binary compatibility. When we modify the public interface, of a component, we compile with project compatibility. But when you change the interface of a basic component which is used by a lot of other components, you have to manually change all referencing project to project compatibility, recompile them and change back to binary compatibility. Thats the main process i want to automate.</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/1625962/how-is-accurev-performance 0 How is Accurev Performance? Peter Kahn 2009-10-26T17:01:11Z 2009-11-10T11:56:35Z <p>How is performance in the current version (4.7) of <a href="http://www.accurev.com" rel="nofollow">Accurev</a>?</p> <ul> <li>time to checkout per 100mb, per gb?</li> <li>time to commit per # of files or mb?</li> <li>responsiveness of gui when 100+ streams?</li> </ul> <p>I just had a demo of Accurev, and the streams look like a lightweight way to model workflow around code/projects. I've heard people praising Accurev for the streams back end and complaining about performance. Accurev appears to have worked on the performance, but I'd like to get some real world data to make sure it isn't a case of demos-well-runs-less-well.</p> <p>Does anyone have Accurev performance anecdotes or (even better) data from testing?</p> http://stackoverflow.com/questions/1567988/source-control-strategy-for-specific-folders-within-cms-generated-site 0 Source control strategy for specific folders within CMS-generated site frankadelic 2009-10-14T18:00:15Z 2009-11-10T07:53:29Z <p>I have an ASP.NET website where most of the pages are generated and published via a CMS system. This includes static HTML, CSS, ASPX, ASP, images, etc.</p> <p>However, we have some user controls and pages that are managed by a separate dev team. These files live under the same web root but are not managed in the CMS. These files are limited to a few files and folders under the web root:</p> <pre><code>/bin /user-controls /custom-aspx /web.config </code></pre> <p>(everything else under "/" is CMS-generated)</p> <p>We don't want to check in all the CMS-generated items into source control (TFS in our case), because those files are constantly changing and versioning is managed within the CMS.</p> <p>How should we handle source control for the directories listed above? Should we just check those in separately?</p> http://stackoverflow.com/questions/909338/what-is-the-worst-commit-message-you-have-ever-authored 12 What is the WORST commit message you have ever authored? rpkelly 2009-05-26T07:16:48Z 2009-11-09T23:15:15Z <p>I mean, we've all done it, making some changes and the checking them in with messages such "as made some changes" or "fixed a bug." Messages so inane, so pointless, you might as well have written "magical fun bus" in their place (of this, I am guilty), as it would be, perhaps, more descriptive. I ask you then, what is the most pointless, most off topic, strangest, or just WORST commit message you have ever authored?</p> http://stackoverflow.com/questions/455698/best-visual-client-for-git-on-mac-os-x 5 Best visual client for Git on Mac OS X? Chris Stewart 2009-01-18T18:53:33Z 2009-11-08T23:59:20Z <p>I'm looking for a nice, Mac OS X-like, client for Git. As an example, I use Versions for Subversion and it's exactly what I'd like to purchase for Git access. Suggestions?</p> <p><a href="http://versionsapp.com/" rel="nofollow">Versions link</a></p> http://stackoverflow.com/questions/302089/git-plugin-for-eclipse 7 Git plugin for eclipse toolkit 2008-11-19T14:47:23Z 2009-11-08T18:59:18Z <p>Hi there,</p> <p>I was intending to have a play with git, and was wondering if anyone had used the <a href="http://git.or.cz/gitwiki/EclipsePlugin" rel="nofollow">git plugin for eclipse</a></p> <p>I see it's at version 0.3.1, and was wondering if anyone knew how stable it was / any gotchas?</p> <p>Thanks...</p> http://stackoverflow.com/questions/1683096/subversion-merging-a-vendors-source-code-releases-into-mainline-at-regular-inte 1 Subversion: Merging a vendor's source code releases into mainline at regular intervals RjOllos 2009-11-05T19:52:19Z 2009-11-05T22:15:09Z <p>At regular intervals, I receive a new release of a vendor's software, delivered as source code in a compressed package, and I don't have access to the vendor's source code repository. We make changes to the vendor's source code between their releases. Our changes do not get incorporated into their releases, but I need to merge changes from their releases into my mainline.</p> <p>My repository layout looks like this:</p> <ul> <li>/branches/Vendor X release 1.0</li> <li>/branches/Vendor X release 1.1</li> <li>/trunk/</li> </ul> <p>The workflow I followed was:</p> <ol> <li>I added <strong>Vendor X release 1.0</strong> as a branch and then copied it to the trunk.</li> <li>We made some changes to the source code on the trunk and then received <strong>Vendor X release 1.1</strong>.</li> <li>I added <strong>Vendor X release 1.1</strong> to a branch. Now, I would like to merge <strong>Vendor X release 1.1</strong> into the trunk.</li> </ol> <p>The problem I am having is that no matter how I try this, I end up with either the merge resulting in no changes to the trunk, or every file being reported as a tree conflict.</p> <p>I think that I would like to somehow do the following: tell Subversion to merge each file without consideration for the revision number of the file. I think that Subversion is reporting a tree conflict for each file, because the files did not originate from the same point in the revision history. However, in many cases these files are identical.</p> <p>Thank you in advance for any help.</p> http://stackoverflow.com/questions/1288480/git-how-do-i-merge-between-branches-while-keeping-some-changesets-exclusive-to-o 8 git: how do I merge between branches while keeping some changesets exclusive to one branch? kch 2009-08-17T15:03:39Z 2009-11-03T12:29:12Z <p>There's a special place in hell for people who hardcode absolute paths and database credentials into multiple random places in web applications. Sadly, before they go to hell they're wreaking havoc on Earth. And we have to deal with their code.</p> <p>I have to perform a few small changes to one of such web applications. I create a new branch <code>features</code>, and perform a global find &amp; replace to update the paths and credentials to my local environment. I commit that. I also tag this as <code>local</code>.</p> <p>I merrily leap into perilous hacking penitence, and after a perplexing hundred patches, I want to merge my <code>features</code> changes into the <code>master</code> branch, but I do not want the one <code>local</code> commit to be merged.</p> <p>Onwards, I'll be merging back and forth between <code>master</code> and <code>features</code>, and I'd like <code>local</code> to stay put in <code>features</code>, and never ever show up in <code>master</code>.</p> <p>Ideally, I'd like all this to happen magically, with as little funny parameters and whatnot as possible.</p> <p>Is there a simple obvious way to do it that I'm missing?</p> <p>I can think of a couple, but they all require me to <strong>remember</strong> that I don't want that commit. And that's definitely not my forte. Especially with such poorly hacked programs.</p> <p>Failing that, I'm interested in more convoluted, manual-ish ways to handle the situation.</p> http://stackoverflow.com/questions/1638477/how-to-keep-track-of-the-scm-revision-in-the-build-versions-automatically 0 How to keep track of the SCM revision in the build versions automatically? Jader Dias 2009-10-28T16:40:43Z 2009-10-31T17:58:50Z <p>I want to look at a production binary and know which revision in the SCM corresponds to that build. How it is possible? Can I accomplish that in Visual Studio using VSS?</p> http://stackoverflow.com/questions/1647694/change-management-suggestions 1 Change Management suggestions? Adamjstevenson 2009-10-30T02:31:40Z 2009-10-30T02:45:55Z <p>I'm dangerously close to launching a pretty heavy web app and I've got almost everything out on my server in QA. I'm still touching up and making changes here and there and although I'm taking nightly snapshots of my server I would still like to have some form of change management in place so I can determine exactly what changed in my environment if something goes horribly wrong (especially while I'm in production). So I'm curious... does anyone have any suggestions for a good change management app (web or otherwise)? What does everyone else do? Should I just suck it up and use a spreadsheet?</p> http://stackoverflow.com/questions/1646120/what-is-the-difference-between-configuration-management-and-version-control 2 What is the difference between configuration management and version control? friedo 2009-10-29T19:47:18Z 2009-10-29T19:58:40Z <p>Can anyone explain in simple terms what the difference is between configuration management and version control? From the descriptions I've been able to find on various websites, it seems like configuration management is just a fancy term for putting your config files in a source control repository. But others lead me to believe there is a more involved explanation. </p> http://stackoverflow.com/questions/205271/project-management-scm-for-techies-and-non-techies 1 Project Management + SCM for techies and non-techies? sobedai 2008-10-15T15:53:08Z 2009-10-27T20:44:27Z <p>Hello,</p> <p>I've recently begun evaluating a few project management projects for the company I work for. It's the classic case - growing company looking for the right solution (meaning, free or really cheap). It's a combination shop - Windows, Macs, and Linux on the desktop. The tech savviness, of course, ranges from newbie to unix guru. </p> <p>I have yet to find anything really close to a total solution. I don't expect to find one, but I am looking for suggestions/guidance/any sort of feedback based on people's experience.</p> <p>What I'm looking for:</p> <ul> <li>web based</li> <li>methodology independent (not looking for an agile solution, etc.)</li> <li>free or really cheap</li> <li>document management</li> <li>timelines and milestones</li> <li>task tracking and assigning </li> <li>reporting</li> <li>source control</li> <li>development wiki</li> </ul> <p>I've looked at Trac, Projectivity, Basecamp, JIRA, RT, XPlanner, and SharedPlan. I've stayed away from Bugzilla due to previous unhappy experiences with it. None of these things really does everything - some are extendable, but I'd check here before going down that path.</p> <p>Thanks,</p> http://stackoverflow.com/questions/1628590/how-to-build-a-list-of-integers-1-to-10-using-recursive-accumulate-in-scheme 0 How to build a list of integers 1 to 10 using recursive accumulate in scheme? Matt 2009-10-27T03:16:20Z 2009-10-27T03:16:20Z <p>(define (accumulate combiner null-value term a next b) (cond ((> a b) null-value) (else (combiner (term a) (accumulate combiner null-value term (next a) next b)))))</p> <p>Using this accumulate procedure i need to build a list from 1 to 10... This is what i have.. I am still fuzzy on how accumulate works</p> <p>(define (+1 x) (+ 1 x))</p> <p>(define (list-int a n) (accumulate + 0 0 (1+ a) n))</p> http://stackoverflow.com/questions/1614115/is-there-an-equivalent-to-flashbake-easy-version-control-for-perforce-or-subver 1 Is there an equivalent to flashbake (easy version control) for Perforce or Subversion Brian Carlton 2009-10-23T15:11:15Z 2009-10-26T13:49:25Z <p>Flashbake is introduced by <a href="http://craphound.com/?p=2171" rel="nofollow">Cory Doctorow</a> and discussed <a href="http://bitbucketlabs.net/flashbake/" rel="nofollow">here</a> and its <a href="http://wiki.github.com/commandline/flashbake" rel="nofollow">project page is here</a>. It hides most of the complexity of git and allows simple configuration. I'm looking for something for Perforce since I have 10s of GB growing to 100+ GB in the next year of a few MB files (pictures mainly) which might not be ideal for git. Plus I have used Perforce and svn before.</p> <p>EDITS: 10/26/09: This is only for me so there isn't a requirement for multiple users. I can use the free version of Perforce. Additionally since Perforce can be called by commands, just like git and subversion, I wouldn't think the proprietary software issues would be a stopper.</p> <p>10/26/09: I don't have a requirement of work disconnected, so the DVCS features of git aren't important.</p> <p>10/26/09: clarified size of repository.</p> http://stackoverflow.com/questions/1613161/identical-consecutive-commit-messages-from-the-same-user 3 Identical consecutive commit messages from the same user Troy Hunt 2009-10-23T12:36:50Z 2009-10-23T21:16:30Z <p>I’m in the midst of preparing some SCM guidelines for our Subversion users and came across a point of contention with the team. Is there ever a valid use case for someone to make consecutive commits with identical messages?</p> <p>If you take the approach that a commit message should describe the “what” and “why” of code changes it’s difficult to see a valid case for this. Looking at our history, the instances where this has happened appear to be more out of convenience than anything else and really don’t tell the story of what the code is doing.</p> <p>Does anyone have any views on the legitimacy of this? Would guidelines (or even pre-commit hooks) be overzealous or is it a reasonable expectation?</p> <p><strong>Edit:</strong> let’s work with the assumption that people are already leaving good commit messages. IMHO, a single word like “updated” or “typo” does not constitute a satisfactory commit message. I would expect to see something more like “Updated colour of submit button to green” or “Fixed typo in instructional copy”. It’s very difficult just to browse a repository log and understand what’s going on in a project without drilling into individual commits if the message is a word or two.</p>