Path: csiph.com!usenet.pasdenom.info!gegeweb.org!de-l.enfer-du-nord.net!feeder1.enfer-du-nord.net!newsfeed.eweka.nl!eweka.nl!feeder3.eweka.nl!newsfeed.xs4all.nl!newsfeed1.news.xs4all.nl!xs4all!post.news.xs4all.nl!not-for-mail Return-Path: X-Original-To: python-list@python.org Delivered-To: python-list@mail.python.org X-Spam-Status: OK 0.030 X-Spam-Evidence: '*H*': 0.94; '*S*': 0.00; '(even': 0.05; 'svn': 0.05; 'git': 0.09; 'occasionally': 0.09; 'windows,': 0.09; 'gui': 0.12; 'mostly': 0.14; 'windows': 0.15; '(actually': 0.16; "(it's": 0.16; 'fly.': 0.16; 'from:addr:rosuav': 0.16; 'from:name:chris angelico': 0.16; 'other),': 0.16; 'wrote:': 0.18; '(not': 0.18; 'commit': 0.19; 'projects,': 0.19; 'typing': 0.19; 'command': 0.22; 'convenient': 0.24; 'header:In-Reply-To:1': 0.27; 'chris': 0.29; 'am,': 0.29; 'patch': 0.29; 'message-id:@mail.gmail.com': 0.30; 'usually': 0.31; '(possibly': 0.31; 'another': 0.32; 'linux': 0.33; 'entirely': 0.33; 'fri,': 0.33; "i'd": 0.34; "can't": 0.35; 'received:209.85': 0.35; 'received:209.85.220': 0.35; 'something': 0.35; 'done.': 0.35; 'but': 0.35; 'received:google.com': 0.35; 'add': 0.35; '14,': 0.36; 'done': 0.36; 'next': 0.36; 'possible': 0.36; 'virtual': 0.37; 'two': 0.37; 'received:209': 0.37; 'sometimes': 0.38; 'tools,': 0.38; 'to:addr:python-list': 0.38; 'anything': 0.39; 'sure': 0.39; 'to:addr:python.org': 0.39; 'skip:u 10': 0.60; 'commands': 0.60; 'life,': 0.60; 'full': 0.61; 'more': 0.64; 'partial': 0.84; 'subject:Control': 0.84; 'upstream': 0.84; 'edwards': 0.91; 'graphical': 0.91; 'choice.': 0.93; 'directly.': 0.95; '2013': 0.98 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type; bh=wGiGaL1cxp6wUTRuq9CLzj5alubuas3YCeSsoSQ82/g=; b=l+h1t2w9f48jwMWGP/5zTjkBitmsc5PkDBn2Q62u/bNHX+X2GhhRBPaU+pwVS87q2T 2Ymzy3pUqGTiqE15o31MBPixdsPJqZppJQCtNH098Kgc+h7lYQu82CrS98zT4mDCDN4i TfE+TOSJSU/KFcBkxj4rcD24D1hZYnrh7J9Idd6cUggN593hiT2t3mpUtXJCuHY1uDpY qkaVkRqZj/K1OL1IwlzGiVFx+YJoX0vyWY+7BFITEyrAw1ZBy6b4p4WyEs5NazgCaucZ aHlxTDmdETXTdwelsqkYjIszX7tXPp5MnDRPxV96+uB/mu4f2YxlDEyezIpYsMs4lWfw tf/w== MIME-Version: 1.0 X-Received: by 10.220.109.66 with SMTP id i2mr1198459vcp.51.1371160783093; Thu, 13 Jun 2013 14:59:43 -0700 (PDT) In-Reply-To: References: <98c13a55-dbf2-46a7-a2aa-8c5f052ff375@googlegroups.com> Date: Fri, 14 Jun 2013 07:59:42 +1000 Subject: Re: Version Control Software From: Chris Angelico To: python-list@python.org Content-Type: text/plain; charset=ISO-8859-1 X-BeenThere: python-list@python.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: General discussion list for the Python programming language List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Newsgroups: comp.lang.python Message-ID: Lines: 29 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1371160791 news.xs4all.nl 15965 [2001:888:2000:d::a6]:40796 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:48029 On Fri, Jun 14, 2013 at 7:53 AM, Grant Edwards wrote: > On 2013-06-13, Chris Angelico wrote: >> On Fri, Jun 14, 2013 at 3:06 AM, Grant Edwards wrote: >> I do almost exclusively Linux dev, but occasionally nip onto Windows >> for one reason or another (possibly inside a virtual machine). It's >> possible to get git for Windows, including gitk and 'git gui' (not >> sure about any other graphical tools, they're the only two I use) > > Unfortunately, something that requires typing commands would not fly. > I mostly use svn via command line and sometimes via meld, but for some > others (even one Linux developer), if it can't be done done entirely > from a GUI, then it isn't going to get done. > > If it wasn't for Cygwin, I'd never be able to accomplish much of > anything in Windows. :) Check out 'git gui' then - and in the Windows build, that's in the Start menu directly. I usually use git gui only for partial commits (it's more convenient than 'git add -p' when the parts to commit and the parts to not-commit are right next to each other), but it can be your full console. For those who like the graphical things in life, it's a good choice. That and gitk for viewing the repo. I use gitk *all the time*, at work and on my own projects, because it is excellent. (Actually I use a minorly-patched gitk; must remember to submit the patch upstream some day.) ChrisA