git.el: Prepend a slash to the file name when adding to .gitignore.

This way the ignore command will really only ignore the marked files
and not files with the same name in subdirectories.

Signed-off-by: Alexandre Julliard <julliard@winehq.org>
Signed-off-by: Junio C Hamano <junkio@cox.net>
This commit is contained in:
Alexandre Julliard
2006-07-22 15:39:32 +02:00
committed by Junio C Hamano
parent 51a6e56fb7
commit 9f56a7fda9

View File

@ -258,7 +258,7 @@ and returns the process output as a string."
(set-buffer (find-file-noselect ignore-name))
(goto-char (point-max))
(unless (zerop (current-column)) (insert "\n"))
(insert name "\n")
(insert "/" name "\n")
(sort-lines nil (point-min) (point-max))
(save-buffer))
(when created