Daniel Mahler <dmah...@gmail.com> 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

_______________________________________________
Emacs-orgmode mailing list
Please use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode

Reply via email to