active questions tagged dvcs - Stack Overflow most recent 30 from stackoverflow.com 2009-12-20T10:32:38Z http://stackoverflow.com/feeds/tag/dvcs http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1894239/choosing-dvcs-criteria 0 Choosing DVCS - criteria Goran 2009-12-12T18:08:43Z 2009-12-12T18:38:52Z <p>There are similar questions on SO but I'd like some clearer answers here.</p> <ol> <li>How important is DVCS not littering your working folder with files? (Alternately is single file repository a big plus to you?)</li> <li>How important is cherry-picking functionality (choosing arbitrary changes instead of lineage of changes)?</li> <li>How important is the speed of DVCS?</li> <li>How important is the size of repository?</li> <li>How important are GUI, IDE plugins, etc.?</li> <li>How important is the blame tracking functionality?</li> <li>Any other features you consider important?</li> </ol> http://stackoverflow.com/questions/138621/best-version-control-for-lone-developer 34 Best Version control for lone developer Stephen 2008-09-26T10:20:21Z 2009-12-12T17:43:58Z <p>I'm a lone developer at the moment; please share you experiences on what is a good VC setup for a lone developer. </p> <p>My constraints are; </p> <ul> <li>I work on multiple machines and need to keep them synced up </li> <li>Sometimes I work offline </li> </ul> <p>I'm currently using Subversion(just the client to a remote server), and that is working ok. I'm interested in mecurial and git DVCS, but none of their use-cases make sense to my situation.</p> http://stackoverflow.com/questions/1194385/seeing-what-revision-goes-with-a-tag-in-git 2 Seeing what revision goes with a tag in Git fakeleft 2009-07-28T14:14:47Z 2009-12-10T14:42:16Z <p>Beginner <a href="http://en.wikipedia.org/wiki/Git%5F%28software%29" rel="nofollow">Git</a> question:</p> <p>In the <a href="http://en.wikipedia.org/wiki/Mercurial" rel="nofollow">Mercurial</a> world, "hg tags" gives me a list of tags and the corresponding revisions, whereas "git tag" only lists the tag names. How do I see what the matching rev number/hash is?</p> http://stackoverflow.com/questions/1878462/how-to-authenticate-users-on-tortoisehg-web-server 1 How to authenticate users on TortoiseHg web server? Eduardo 2009-12-10T03:27:59Z 2009-12-10T09:33:19Z <p>Hi,</p> <p>TortoiseHg web server configuration has an "Allow Push" parameter where I put the users allowed to push changes. But when I try to push I get an "authorization failed" error. How are the users authenticated? Where do the passwords come from?</p> http://stackoverflow.com/questions/1306752/which-dvcs-would-work-best-on-windows-for-my-scenario 1 Which DVCS would work best on Windows for my scenario? PoorLuzer 2009-08-20T14:56:19Z 2009-12-08T17:13:06Z <p>At work I use ClearCase and SourceSafe, but have found some time to do some time to code for myself enroute thanks to a disposable laptop.</p> <p>However, I wish I had a lightweight VCS on my system using which I would be able to make changes to my code during the commute and then push/grab them from my Linux systems.</p> <p>I use git on my home system, but I can't really get it working on Windows. I don't want all that cygwin hack.</p> <p>If it does not run natively on Windows, it just won't do.</p> <p><strong>What have you guys tried on your Windows system? Something that YOU use</strong>.</p> <p>The big player at the moment seems to be Mercurial?</p> <p>What would be best for a one (or maybe two) man team?</p> <p>I just need to maintain :</p> <ol> <li>Versioned copies of source code.</li> </ol> <p>Checking in and out should be as less obtrusive as possible.</p> <p>I am looking forward to a multiple Undo kind of feature (like that in an EMacs buffer) but persistent.</p> <ol> <li><p>I really like the way git keeps track of lines moving between files in a source code set</p></li> <li><p>I should be able to move part(s)/sub tree(s) of the source tree (each sub tree implies a module/plugin to my the main software I am building) to an archival system either completly or partially and restore them back from the archive as and when required and the system should track any changes to this tree as well.</p></li> </ol> <p>I actually want to experiment with my code as much as possible without me manually keeping track of what I modified and what I need to undo once I try out some idea, so that I am back to where I want to continue from.</p> <p>Notes : A similar topic came up a year ago : <a href="http://stackoverflow.com/questions/4670/dvcs-choices-whats-good-for-windows">http://stackoverflow.com/questions/4670/dvcs-choices-whats-good-for-windows</a> I hope things have changed, and I really want <strong>people to share their own, real life experiences</strong>. Not something they recommend without using it or they <strong>think</strong> will work.</p> http://stackoverflow.com/questions/1856654/git-how-to-add-commit-removals-made-via-vanilla-rm 3 git: how to add/commit removals made via vanilla rm? kch 2009-12-06T21:23:12Z 2009-12-07T00:55:30Z <p>I deleted a bunch of files / directories from a git repository using <code>rm</code>, the Finder, etc.</p> <p>I'm looking for a git command that'll record these to the index as marked for removal. (As if I had called <code>git rm</code> on them.)</p> <p>I understand <code>git add -u</code> will do this, along with a bunch of other things. I'd like my command to exclusively handle removals.</p> http://stackoverflow.com/questions/1830303/should-i-have-to-merge-and-commit-every-time-i-update-my-mercurial-branch-on-the 2 Should I have to merge and commit every time I update my Mercurial branch on the production server? Soviut 2009-12-02T02:31:03Z 2009-12-02T14:17:25Z <p>I'm using Mercurial in a recent project. On the web server where I'm deploying the project I have a slightly different config file with production settings. The problem is when I <code>pull</code> and <code>update</code>, I often have to <code>merge</code> and <code>commit</code> as well.</p> <p>Is this the correct workflow? It seems strange that in order to be able to continue to update I have to be committing the changesets, I figured a merge would integrate them into my production branch and continue to do so each time i update. Is this a distributed version control paradigm I'm just not used to yet?</p> http://stackoverflow.com/questions/183918/any-good-git-tutorials 11 Any good git tutorials? matli 2008-10-08T17:33:48Z 2009-12-02T09:47:57Z <p>Are there any good git tutorials available somewhere, except for <a href="http://www.kernel.org/pub/software/scm/git/docs/gittutorial.html" rel="nofollow">the official tutorial</a>?</p> <p>I like <a href="http://hgbook.red-bean.com/hgbook.html" rel="nofollow">the mercurial book</a>, but haven't found anything similar for git. I would like to start using git in some projects, and would therefore be able to point my colleagues to some good reading material. In this particular case, they are still mostly used to RCS and CVS. </p> http://stackoverflow.com/questions/1807036/git-merging-public-and-private-branches-while-while-keeping-certain-files-intact 4 Git: merging public and private branches while while keeping certain files intact in both branches Evgeny 2009-11-27T06:07:21Z 2009-12-01T19:14:53Z <p>Hi, </p> <p>I've read a few git questions here, but could not find an answer to this one:</p> <p>I have a public and a private branches where I want to allow certain files to diverge.</p> <p>Those are configuration files with passwords and my local customizations. </p> <p>I do want to be able to merge the branches both ways: from private to public and back, but I do not want to ever have those specific files merged automatically.</p> <p>Is there a way to set up git this way? I'd love to find an automated solution :) - so that merging could be done as usual.</p> <p><hr></p> <p><strong>EDIT:</strong> here's the solution that worked for me (Thanks to VonC for the advice on gitattribute)</p> <p>the only unexpected thing for me was that "merge protection" starts working only after files have diverged in the two branches, not immediately after the following configuration was applied</p> <p>.gitattributes (track with git if you want to share this) or .git/info/attributes:</p> <pre><code>file1 merge=keepmine path/file2 merge=keepmine </code></pre> <p>keepmine is the named custom merge manager that is just a do-nothing command called instead of the internal merge driver on selected files, which is set up below</p> <p>When merging from private to public branch I usually do <code>git merge --squash private</code>. That way private edits won't get into the git history on the public branch.</p> <p>.git/config:</p> <pre><code>#public repository [remote "origin"] fetch = +refs/heads/*:refs/remotes/origin/* url = &lt;public repo git url&gt; #private repository #has to set up with git init and populated with the initial commit to branch mybranch [remote "private"] push = +: url = /path/to/local/private/repo [merge "keepmine"] name = dont_merge_selected_files driver = echo %O %A %B [branch "master"] remote = origin merge = refs/heads/master #private branch settings [branch "mybranch"] remote = private merge = refs/heads/mybranch </code></pre> <p>if there's a way to improve this please comment</p> http://stackoverflow.com/questions/1774473/restore-previously-removed-code-not-necessarily-single-or-whole-file-in-git 1 Restore previously removed code (not necessarily single or whole file) in git Ollie Saunders 2009-11-21T04:05:45Z 2009-11-23T20:20:57Z <p>I removed a class a feature from my code a while back and committed the removal. The feature was implemented as a single class with a BDD-style spec and a few other classes were altered in the removal commit as they made use of the feature. The commit is clean, in that the only change in the commit is the removal of this one feature. </p> <p>Now, I've changed my mind and decided I want the feature back only since I removed it I've made a whole bunch of changes. (I knew this was a possibility but I didn't keep a copy because I knew I could pull it out of version control). I found the commit: <code>cb2a6b1</code> and I can see the removed lines when I: <code>git show cb2a6b1</code>. The question is how can I apply those lines back into my code now?</p> <p><code>git diff cb2a6b1 cb2a6b1~1</code> produces a diff that reframes the removal as an addition but it won't <code>git apply</code>, mainly because the line numbers have changed. I can just manually put the stuff back in with some manual text editing but is there a more automatic alternative?</p> http://stackoverflow.com/questions/1779675/how-would-you-store-encrypted-information-in-public-dvcs-repository 1 How would you store encrypted information in public DVCS repository? tarasm 2009-11-22T19:19:07Z 2009-11-22T22:23:11Z <p>Hello Everyone,</p> <p>I have projects that multiple developers are working on. We all work off the same git repository.</p> <p>Currently, I do not store production server configuration in the repository, because the configuration files contain database credentials.</p> <p>I would like to start storing these configurations in the repository, so I'm thinking about encrypting the configuration files before saving them in the DVCS.</p> <ol> <li>What do you guys think about this idea?</li> <li>How would go about doing this?</li> </ol> http://stackoverflow.com/questions/1751612/git-tool-to-remove-lines-from-staging-if-they-consist-only-of-changes-in-whitespa 4 Git tool to remove lines from staging if they consist only of changes in whitespace Max Howell 2009-11-17T20:39:50Z 2009-11-20T18:53:08Z <p>The point in removing trailing whitespace is that if everyone does it always then you end up with a diff that is minimal, ie. it consists only of code changes and not whitespace changes.</p> <p>However when working with other people who do not practice this, removing all trailing whitespace with your editor or a pre-commit hook results in an <em>even worse</em> diff. You are doing the opposite of your intention.</p> <p>So I am asking here if there is a tool that I can run manually before I commit that unstages lines from staging that are only changes in whitespace.</p> <p>Also a bonus would be to change the staged line to have trailing whitespace removed for lines that have code changes.</p> <p>Also a bonus would be to not do this to Markdown files (as trailing space has meaning in Markdown).</p> <p>I am asking here as I fully intend to write this tool if it doesn't already exist. Thanks.</p> http://stackoverflow.com/questions/1759018/distributed-source-control-for-visualworks-smalltalk 2 Distributed source control for VisualWorks Smalltalk Benjamin Pollack 2009-11-18T20:53:56Z 2009-11-19T17:06:15Z <p>One of the annoying things about Smalltalk is that it (usually) requires its own VCS, due to the way that it manages its source code. Squeak and Gemstone (at least in its GLASS version) have a DVCS called Monticello that works passably well. As near as I can tell, VisualWorks' main VCS, StORE, only works in old-fashioned centralized mode. Is there a system similar to Monticello available for VisualWorks? Alternatively, am I misunderstanding the right way to use StORE?</p> http://stackoverflow.com/questions/1740896/are-mercurials-bundled-extensions-considered-part-of-its-core-feature-set-and-a 2 Are Mercurial's bundled extensions considered part of it's core feature set and approach to version control? buymeasoda 2009-11-16T08:50:28Z 2009-11-16T09:23:02Z <p>I'm currently trying to evaluate Mercurial, to get a feel for the philosophy the system tries to promote - but one thing that's got me confused is the presence of the bundled 'extensions' and how they fit into the mix. </p> <p>In the core package, Mercurial ships with a bunch of functionality that is implemented as extensions but is disabled by default. (See: <a href="http://mercurial.selenic.com/wiki/UsingExtensions#Extensions%5FBundled%5Fwith%5FMercurial" rel="nofollow">http://mercurial.selenic.com/wiki/UsingExtensions#Extensions_Bundled_with_Mercurial</a>)</p> <p>Here's the thing I'm confused about: </p> <ul> <li><p>Are these extensions considered first class citizens by the Mercurial dev team and therefore part of the overall Mercurial approach to DVCS? </p></li> <li><p>Why are they implemented outside of the default features and disabled by default?</p></li> </ul> <p>I don't need info on how activate extensions, that's pretty straight forward - it's the logic behind the separation that I'm curious about.</p> <p>The reason I'm trying to get my head around this is because I don't really want to try and crowbar an opposing approach into Mercurial via extensions if it differs from the overall philosophy of the project.</p> http://stackoverflow.com/questions/1728922/how-does-git-track-source-code-moved-between-files 1 How does git track source code moved between files? Thilo 2009-11-13T12:26:50Z 2009-11-13T17:55:33Z <p>Apparently, when you move a function from one source code file to another, the git revision log (for the new file) can show you where that code fragment was originally coming from (see for example the Viewing History section in <a href="http://nathanj.github.com/gitguide/tour.html" rel="nofollow">this tutorial</a>).</p> <p>How does this work?</p> http://stackoverflow.com/questions/1711546/how-to-initialize-google-code-project-in-mercurial 1 How to initialize google-code project in Mercurial OrangeRind 2009-11-10T22:02:30Z 2009-11-11T00:38:41Z <p>I have started a Mercurial based project on google code. I have worked in subversion for sometime, but I am confused with what to do what in Hg.</p> <p>I would like help on the following:</p> <ol> <li>How do I initialize project (first on my local machine) (then from my local copy to google's server)</li> <li>How do I get my copy of a build from the server</li> <li>How do I update(merge/sync) my local changes back to the server</li> </ol> <p>My project is in PHP and I am using netbeans</p> http://stackoverflow.com/questions/1704565/why-kiln-is-based-on-mercurial-and-not-other-dvcs 6 Why Kiln is based on Mercurial, and not other (D)VCS Jakub Narębski 2009-11-09T23:05:38Z 2009-11-10T00:29:07Z <p>What were the reason for chosing Mercurial as a basis of FogCreek <a href="http://fogcreek.com/kiln/" rel="nofollow"><strong>Kiln</strong></a>, a source control management system with tightly integrated code review, and FogBugz integration?</p> <p>Why Mercurial, and not other (distributed) version control system, like Bazaar, Git or Monotone, or creating own version control system like <a href="http://www.fossil-scm.org/" rel="nofollow">Fossil</a> (distributed software configuration management, including bug tracking and wiki) did?</p> <p>What were features that make FogCreek choose Mercurial as Kiln engine?</p> http://stackoverflow.com/questions/1695128/which-dvcs-is-most-conducive-to-experimenting 1 Which DVCS is most conducive to experimenting? dasickis 2009-11-08T02:16:53Z 2009-11-09T14:35:18Z <p>I was wondering which DVCS is most conducive to experimentation i.e. branching, etc. I want something where anyone can quickly launch smaller projects and refactor code quickly. I want to create an environment where experimenting is cheap and can be discarded/merged easily. </p> http://stackoverflow.com/questions/1685228/how-to-cat-a-file-in-jgit 2 How to "cat" a file in JGit? Thilo 2009-11-06T03:28:38Z 2009-11-08T00:42:34Z <p>A while back I was looking for an <a href="http://stackoverflow.com/questions/177469/embeddable-distributed-version-control-system-in-java">embeddable distributed version control system in Java</a>, and I think I have found it in <a href="http://www.eclipse.org/egit/" rel="nofollow">JGit</a>, which is a pure Java implementation of git. However, there is not much in the way of sample code or tutorials.</p> <p>How can I use JGit to retrieve the HEAD version of a certain file (just like "svn cat" or "hg cat" whould do)? </p> <p>I suppose this involves some rev-tree-walking and am looking for a code sample.</p> http://stackoverflow.com/questions/1672487/mercurial-why-would-you-maintain-separate-branches-versions-of-software-in-separ 2 Mercurial: Why would you maintain separate branches/versions of software in separate cloned repos rather than with tags? Pieter Breed 2009-11-04T08:57:57Z 2009-11-04T14:10:50Z <p>I'm looking at the mercurial handbook, chapter 6 "Working with multiple branches". In there the author states that if you have separate versions/branches of the same software that it makes sense in an implied obvious way to host each branch of the software in a separate repository.</p> <p>I know that Mercurial supports tags (which is the way that branches are done in subversion AFAIK). Why would you use different <em>repositories</em> instead of tags for branch managing?</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/1646074/how-to-ensure-database-changes-can-be-easily-moved-over-dvcs-using-django 0 How to ensure database changes can be easily moved over DVCS using django chiggsy 2009-10-29T19:40:29Z 2009-10-30T02:55:37Z <h1>Overview</h1> <p>I'm building a website in django. I need to allow people to begin to add flatpages, and set some settings in the admin. These changes should be definitive, since that information comes from the client. However, I'm also developing the backend, and as such will am creating and migrating tables. I push these changes to the hub. </p> <h1>Tools</h1> <p><a href="http://djangoproject.com" rel="nofollow">django</a></p> <p><a href="http://git-scm.com" rel="nofollow">git</a></p> <p><a href="http://south.aeracode.org" rel="nofollow">south</a></p> <p><a href="http://postgresql.org" rel="nofollow">postgres</a></p> <h1>Problem</h1> <p>How can I ensure that I get the database changes from the online site down to me on my lappy, and also how can I push my database changes up to the live site, so that we have a minimum of co-ordination needed? I am familiar with git hooks, so that option is in play.</p> <p>Addendum:</p> <p>I guess I know which tables can be modified via the admin. There should not be much overlap really. As I consider further, the danger really is <em>me</em> pushing data that would overwrite something they have done. </p> <p>Thanks.</p> http://stackoverflow.com/questions/1587846/how-do-i-show-the-changes-which-have-been-staged 3 How do I show the changes which have been staged? Frerich Raabe 2009-10-19T09:57:27Z 2009-10-29T23:47:17Z <p>I staged a few changes to be committed; how can I see the diff of all files which are staged for the next commit? I'm aware of <a href="http://mirrors.evolva.ro/kernel.org/software/scm/git/docs/git-status.html" rel="nofollow">git status</a>, but I'd like to see the actual diffs - not just the names of files which are staged.</p> <p>I saw that the <a href="http://www.kernel.org/pub/software/scm/git/docs/git-diff.html" rel="nofollow">git-diff(1)</a> man page says</p> <blockquote> <p>git diff [--options] [--] […]</p> <p>This form is to view the changes you made relative to the index (staging area for the next commit). In other words, the differences are what you <em>could</em> tell git to further add to the index but you still haven't. You can stage these changes by using git-add(1). </p> </blockquote> <p>Unfortunately, I can't quite make sense of this. There must be some handy one-liner which I could create an alias for, right?</p> http://stackoverflow.com/questions/1598759/git-and-mercurial-compare-and-contrast 36 Git and Mercurial - Compare and Contrast TM 2009-10-21T04:46:35Z 2009-10-29T08:35:55Z <p>For a while now I've been using subversion for my personal projects.</p> <p>More and more I keep hearing great things about Git and Mercurial, and DVCS in general.</p> <p>I'd like to give the whole DVCS thing a whirl, but I'm not too familiar with either option.</p> <p>What are some of the differences between Mercurial and Git?</p> <p>Note that I'm <strong>not</strong> trying to find out which one is "best" or even which one I should start with. I'm mainly looking for key areas where they are similar and where they are different, because I am interested to know how they differ in terms of implementation and philosophy.</p> http://stackoverflow.com/questions/1638123/lightweight-portable-vcs-for-server-hopping-dba 0 lightweight/portable VCS for server-hopping DBA? Aaron 2009-10-28T15:46:12Z 2009-10-28T17:08:13Z <p>I'm looking for a VCS that'll help me keep all of my work scripts in-sync.</p> <p>Requirements:</p> <ul> <li>Portable (as in flash drive, not code-level)</li> <li>Run on Windows XP and Server 2003+</li> <li>No installation dependencies (Cygwin, perl, Python)</li> </ul> <p>I use Mercurial on my work machine for version control of the various T-SQL, ksh, perl, and CMD/BAT scripts that I maintain as a MS SQL Server DBA and Unix sysadmin. So far, hg has worked for my AIX boxes- I mount my home directory as I login, and deal with the repo as if it were local. </p> <p>I haven't been able to find a similar solution for the Windows machines I use. Most of them I do not have Local Admin rights; even if I did, I'd rather not install (and maintain) Python + Mercurial on all of them. I can't get to my home directory on them remotely, which leaves a client running on each machine as the only option. </p> <p>Bonus points for an answer that would let me use a single repo for both the Windows and Unix machines. :)</p> <p>I'm running WinXP, with heavy use of Cygwin and a CrunchBang VM. </p> http://stackoverflow.com/questions/1622363/how-do-i-determine-the-parent-parent-repository-of-a-git-repository 2 how do I determine the parent parent repository of a git repository? Ross Rogers 2009-10-25T22:51:31Z 2009-10-26T14:25:54Z <p>When I do a <CODE>git pull</CODE> my repository automatically pulls from the original git repo that I cloned from. How can I get the URL of that git repository from the child repository?</p> http://stackoverflow.com/questions/51619/how-to-setup-git-bare-http-available-repository-on-iis-machine 8 How to setup GIT bare HTTP-available repository on IIS-machine Artem Tikhomirov 2008-09-09T11:11:45Z 2009-10-20T15:20:07Z <p>Hello/ My build-server already runs IIS to serve 80 and 443 port over TCP. I want to make centralized "push/pull" GIT repository available to all my team members over the Internet. </p> <p>So I should use HTTP or HTTPS. </p> <p>But I cannot use Apache because of IIS already hooking up listening sockets on 80 and 443 ports! Is there any way to publish GIT repository over <em>IIS</em>? Does GIT use WebDAV ultima analysi?</p> <p><strong>Update.</strong> Seems that git HTTP installation is read-only one. That's sad. I've intended to keep stable branch on build server and redeploy using hook on push. Does anyone see workaround beside using SVN foк that bratch?</p> http://stackoverflow.com/questions/1391241/free-private-bazaar-online-source-host 3 Free private Bazaar online source host Andrew 2009-09-07T22:55:25Z 2009-10-17T00:45:16Z <p>Apologies if this is a duplicate question.</p> <p>I am looking for a free private online Bazaar source host. Does anybody know of any? I had a quick look and it seems there are lots of Git, Mercurial, and SVN options, but no Bazaar?</p> <p>EDIT: Just to clarify, when I say "private" I mean in the sense that you get your own private repository where you can grant access to people you choose.</p> http://stackoverflow.com/questions/1569310/push-dvcs-repository-to-master-without-needing-codebase 0 Push DVCS repository to master without needing codebase Scorchin 2009-10-14T22:14:25Z 2009-10-16T11:17:24Z <p>To work on a client's staging environment I have to connect through a VPN which locks all normal network traffic and prevents any connection to the Internet.</p> <p>This would immediately prevent any of the "normal" VCS solutions from being used as it's not possible to gain access to the server. A solution to this would be to create a DVCS repository (git?) locally and then push changes to the master, as and when needed. There is one flaw in this plan.</p> <p><strong>The entire codebase is around 14GB</strong>. To download all of this over the internet would take some time, especially when I'm likely to be working on 3 or 4 different machines in each case. This seems silly and overkill for a DVCS.</p> <p><strong>TL;DR</strong> <em>Can any DVCS solution allow you to push to a master server/repo without needing the codebase</em>? Bad example: copy the .git folder (not the 14GB codebase) to another directory and push this to the master once disconnected from the VPN.</p> http://stackoverflow.com/questions/1471082/managing-aesthetic-code-changes-in-git 5 Managing aesthetic code changes in git Ollie Saunders 2009-09-24T11:27:46Z 2009-10-13T05:38:16Z <p>I find that I make a lot of small changes to my source code, often things that have almost no functional effect. For example:</p> <ul> <li>Refining or correcting comments.</li> <li>Moving function definitions within a class for a more natural reading order.</li> <li>Spacing and lining up some declarations for readability.</li> <li>Collapsing something using multiple lines on to one.</li> <li>Removing an old piece of commented-out code.</li> <li>Correcting some inconsistent whitespace.</li> </ul> <p>I guess I have a formidable attention to detail in my code. But the problem is I don't know what to do about these changes and they make it difficult to switch between branches etc. in git. I find myself not knowing whether to commit the minor changes, stash them, or put them in a separate branch of little tweaks and merge that in later. None those options seems ideal. </p> <p>The main problem is that these sort of changes are unpredictable. If I was to commit these there would be so many commits with the message "Minor code aesthetic change.", because, the second I make such a commit I notice another similar issue. What should I do when I make a minor change, a significant change, and then another minor change? I'd like to merge the three minor changes into one commit. It's also annoying seeing files as modified in <code>git status</code> when the change barely warrants my attention. I know about <code>git commit --amend</code> but I also know that's bad practice as it makes my repo inconsistent with remotes.</p>