Per gitignore(5) it seems to me that directories in the root of the repository should be ignored without leading ./ files. E.g.
build/ is correct for ignoring build/ directory and its content. Signed-off-by: Matěj Cepl <[email protected]> --- .../6d1f1d5b-793e-4410-9ca4-b242ab82fa61/values | 17 +++++++++++++++++ .gitignore | 6 +++--- 2 files changed, 20 insertions(+), 3 deletions(-) create mode 100644 .be/bea86499-824e-4e77-b085-2d581fa9ccab/bugs/6d1f1d5b-793e-4410-9ca4-b242ab82fa61/values diff --git a/.be/bea86499-824e-4e77-b085-2d581fa9ccab/bugs/6d1f1d5b-793e-4410-9ca4-b242ab82fa61/values b/.be/bea86499-824e-4e77-b085-2d581fa9ccab/bugs/6d1f1d5b-793e-4410-9ca4-b242ab82fa61/values new file mode 100644 index 0000000..fd81be4 --- /dev/null +++ b/.be/bea86499-824e-4e77-b085-2d581fa9ccab/bugs/6d1f1d5b-793e-4410-9ca4-b242ab82fa61/values @@ -0,0 +1,17 @@ +creator: Matěj Cepl <[email protected]> + + +reporter: Matěj Cepl <[email protected]> + + +severity: minor + + +status: fixed + + +summary: Wrong .gitignore + + +time: Mon, 02 Jan 2012 14:42:57 +0000 + diff --git a/.gitignore b/.gitignore index 3ac2a52..ea4d8f0 100644 --- a/.gitignore +++ b/.gitignore @@ -1,6 +1,6 @@ *.pyc -./build -./doc/man/*.1 -./doc/.build/ +build +doc/man/*.1 +doc/.build/ .be/id-cache libbe/_version.py -- 1.7.1 _______________________________________________ Be-devel mailing list [email protected] http://void.printf.net/cgi-bin/mailman/listinfo/be-devel
