From mboxrd@z Thu Jan 1 00:00:00 1970 From: Bernt Hansen Subject: Re: *.bak files in trunk? Date: Mon, 28 Jun 2010 20:45:32 -0400 Message-ID: <87pqzabr9v.fsf@gollum.intra.norang.ca> References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Received: from [140.186.70.92] (port=54205 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1OTOxG-00077j-Ps for emacs-orgmode@gnu.org; Mon, 28 Jun 2010 20:45:39 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1OTOxF-0001VB-Un for emacs-orgmode@gnu.org; Mon, 28 Jun 2010 20:45:38 -0400 Received: from mho-02-ewr.mailhop.org ([204.13.248.72]:61157) by eggs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1OTOxF-0001Uz-SZ for emacs-orgmode@gnu.org; Mon, 28 Jun 2010 20:45:37 -0400 In-Reply-To: (Daniel Mahler's message of "Mon\, 28 Jun 2010 20\:56\:27 +0200") List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: Daniel Mahler Cc: emacs-orgmode@gnu.org Daniel Mahler writes: > Is this normal? > > mahler:~/ELISP/org-mode-git$ git status > # On branch master > nothing to commit (working directory clean) > mahler:~/ELISP/org-mode-git$ find . -name "*.bak" > ./lisp/ChangeLog.bak > ./lisp/babel/langs/ob-C.el.bak ... > ./lisp/org-capture.el.bak.bak.bak.bak > ./lisp/org-macs.elc.bak.bak.bak.bak > ./lisp/org-publish.elc.bak.bak.bak.bak Hi Daniel, I don't think those files are in the repository but they are in your local working directory. There is an entry '*.bak' in the .gitignore file in the repository so 'git status' will not show these files by default (since they are ignored). You can see untracked files with $ git ls-files -o $ git ls-files '*.bak' returns nothing for me so there are no files ending in '.bak' in the repository as far as I can tell. -Bernt