From mboxrd@z Thu Jan 1 00:00:00 1970 From: ng0 Subject: Re: wrt git-exec-path patch Date: Mon, 20 Feb 2017 20:59:23 +0000 Message-ID: <20170220205922.2xfb7ghx4y4dhbhv@wasp> References: <20170215222648.t55vpdvy6pzulriz@wasp> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:42116) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cfv1g-0004j9-67 for guix-devel@gnu.org; Mon, 20 Feb 2017 15:57:41 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1cfv1c-00042V-3l for guix-devel@gnu.org; Mon, 20 Feb 2017 15:57:40 -0500 Received: from perdizione.investici.org ([2001:41d0:2:33d0::19]:29981) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1cfv1b-00042N-Pj for guix-devel@gnu.org; Mon, 20 Feb 2017 15:57:36 -0500 Received: from [94.23.50.208] (perdizione [94.23.50.208]) (Authenticated sender: niasterisk@grrlz.net) by localhost (Postfix) with ESMTPSA id ACB7C121269 for ; Mon, 20 Feb 2017 20:57:33 +0000 (UTC) Content-Disposition: inline In-Reply-To: <20170215222648.t55vpdvy6pzulriz@wasp> List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: "Guix-devel" To: guix-devel@gnu.org On 17-02-15 22:26:48, ng0 wrote: > Why was this patch necessary? I only face troubles with it. > > Fixed is now "git rebase" after someone in IRC told me to unset > GIT_EXEC_PATH, but git send-email is now "not a git command". > > This is on GuixSD. > > > commit 82de2655a16dcc7a8e3b992b4afd34ec32c244a6 > Author: David Craven > Date: Fri Feb 10 12:21:08 2017 +0100 > > gnu: git: Add GIT_EXEC_PATH search-path-specification. > > Enables git plugins to be found when in they're in the system profile. > > * gnu/packages/version-control.scm (git)[native-search-paths]: Add > GIT_EXEC_PATH. Remove git wrapper and outdated comment. > The recommendation was to export this: export GIT_EXEC_PATH="/home/ng0/.guix-profile/libexec/git-core${GIT_EXEC_PATH:+:}$GIT_EXEC_PATH" Afterwards, this is what leads to my error: ng0@wasp ~> cd src/guix/guix/ ng0@wasp ~/s/g/guix> torify git pull upstream master --rebase >From git://git.savannah.gnu.org/guix * branch master -> FETCH_HEAD /home/ng0/.guix-profile/libexec/git-core/git-sh-setup: line 46: /home/ng0/.guix-profile/libexec/git-core:/gnu/store/bbirr7a14463ahl3m378rwv5px4h2lk0-profile/libexec/git-core:/home/ng0/.guix-profile/libexec/git-core:/gnu/store/bbirr7a14463ahl3m378rwv5px4h2lk0-profile/libexec/git-core:/home/ng0/.guix-profile/libexec/git-core/git-sh-i18n: No such file or directory And when I unset GIT_EXEC_PATH, I can at least use --rebase, but I can't use git send-email. If there's no solution or explanation, my advice is to revert this.