From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1Lytjr-0000Wh-J0 for qemu-devel@nongnu.org; Tue, 28 Apr 2009 16:17:11 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1Lytjn-0000Vr-5Q for qemu-devel@nongnu.org; Tue, 28 Apr 2009 16:17:11 -0400 Received: from [199.232.76.173] (port=40255 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Lytjn-0000Vo-1X for qemu-devel@nongnu.org; Tue, 28 Apr 2009 16:17:07 -0400 Received: from smtp6-g21.free.fr ([212.27.42.6]:59175) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1Lytjm-0001pU-9h for qemu-devel@nongnu.org; Tue, 28 Apr 2009 16:17:06 -0400 In-Reply-To: Subject: Re: [Qemu-devel] updating git tree From: "=?utf-8?q?Fran=C3=A7ois?= Revol" Date: Tue, 28 Apr 2009 22:17:20 +0200 CEST Message-Id: <11194473229-BeMail@laptop> Mime-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Andreas =?utf-8?q?F=C3=A4rber?= Cc: qemu-devel@nongnu.org > > To commit individual files, use `git add file1.c`, then `git commit` > without -a. > You can check `git status` for what'll get committed. That I guessed, but there is no way to forbid commiting deleted files at once... > While individual commands are referred to as git-svn, for instance, > you need to call them without dash since v1.6, e.g., `git svn`. > So `git config --global user.email revol@free.fr` should do the trick > iirc. But does it matter locally=3F ;) Yes I tried this too. Again, git is too old here and ENOSPC to distupgrade yet. Found out in man pages one can either use ~/.git/config with .ini like sections: [user] name =3D "Fran=C3=A7ois Revol" email =3D "revol@free.fr" or export GIT=5FAUTHOR=5FNAME=3D"Fran=C3=A7ois Revol" export GIT=5FAUTHOR=5FEMAIL=3D"revol@free.fr" export GIT=5FCOMMITTER=5FNAME=3D"Fran=C3=A7ois Revol" export GIT=5FCOMMITTER=5FEMAIL=3D"revol@free.fr" which I've done in the project-local .profile. Fran=C3=A7ois.