From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jonas Fonseca Subject: [ANNOUNCE] tig-1.1 Date: Fri, 12 Oct 2012 15:05:57 +0200 Message-ID: <20121012130557.GA20702@diku.dk> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: QUOTED-PRINTABLE To: git@vger.kernel.org X-From: git-owner@vger.kernel.org Fri Oct 12 15:39:25 2012 Return-path: Envelope-to: gcvg-git-2@plane.gmane.org Received: from vger.kernel.org ([209.132.180.67]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1TMfST-0002YF-P6 for gcvg-git-2@plane.gmane.org; Fri, 12 Oct 2012 15:39:22 +0200 Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S932941Ab2JLNjK convert rfc822-to-quoted-printable (ORCPT ); Fri, 12 Oct 2012 09:39:10 -0400 Received: from mgw2.diku.dk ([130.225.96.92]:33349 "EHLO mgw2.diku.dk" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S932311Ab2JLNjI (ORCPT ); Fri, 12 Oct 2012 09:39:08 -0400 X-Greylist: delayed 1967 seconds by postgrey-1.27 at vger.kernel.org; Fri, 12 Oct 2012 09:39:08 EDT Received: from localhost (localhost [127.0.0.1]) by mgw2.diku.dk (Postfix) with ESMTP id E0F4C19BCF1 for ; Fri, 12 Oct 2012 15:06:18 +0200 (CEST) Received: from mgw2.diku.dk ([127.0.0.1]) by localhost (mgw2.diku.dk [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 31213-12 for ; Fri, 12 Oct 2012 15:06:14 +0200 (CEST) Received: from nhugin.diku.dk (nhugin.diku.dk [130.225.96.140]) by mgw2.diku.dk (Postfix) with ESMTP id AAF3719BCAF for ; Fri, 12 Oct 2012 15:06:14 +0200 (CEST) Received: from tyr.diku.dk (tyr.diku.dk [130.225.96.226]) by nhugin.diku.dk (Postfix) with ESMTP id 9D8E16DFB71 for ; Fri, 12 Oct 2012 15:06:14 +0200 (CEST) Received: by tyr.diku.dk (Postfix, from userid 3873) id 9E9BA266A1; Fri, 12 Oct 2012 15:05:57 +0200 (CEST) Content-Disposition: inline User-Agent: Mutt/1.5.21 (2010-09-15) Sender: git-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: git@vger.kernel.org Archived-At: Hello, I've release tig version 1.1 with a bunch of improvements and bug fixes= =2E Note that tig no longer uses move/copy detection by default to work better on large repository. See the release notes below on how to restore the old behavior. What is tig? ------------ Tig is an ncurses-based text-mode interface for git. It functions mainl= y as a git repository browser, but can also assist in staging changes for commit at chunk level and act as a pager for output from various git commands. - Homepage: http://jonas.nitro.dk/tig/ - Manual: http://jonas.nitro.dk/tig/manual.html - Tarballs: http://jonas.nitro.dk/tig/releases/ - Git URL: git://github.com/jonas/tig.git=20 - Gitweb: http://repo.or.cz/w/tig.git Release notes ------------- Incompatibilities: - Disable diff move/copy detection by default, boosting diff performance on larger projects. Use git config 'diff.renames' option (git-wide) to set your preferred behavior. Environment variable TIG_DIFF_OPTS can be used to restore the old behavior. - Values set for author-width and filename-width will result in widths one character bigger than previously. Improvements: - Typing a text in the prompt will be interpreted as a tig command. Prefixing the command with a '!' will execute this system command in an external pager. Entering a single key will execute the corresponding key binding. - Basic support for wrapping long line in pager, diff, and stage views= =2E Enable using: `set wrap-lines =3D yes`. (GH #2) - User-defined commands prefixed with a '?' means prompt before execution. Example: `bind main B !?git rebase -i %(commit)`. - User-defined commands prefixed with a '<' means exit after execution= =2E Example: `bind main C !