I attach some patches which should improve the lot of people using git repos. I've basically added some things to .gitignore files so that you don't get useless alarms all the time.
>From 432539d20679c1f06e2e626b5d48fc87991c8150 Mon Sep 17 00:00:00 2001
From: Mark Carter <[EMAIL PROTECTED]>
Date: Sat, 3 Nov 2007 14:40:46 +0000
Subject: [PATCH] Enhanced .gitignore

Added a bunch of files that can be ignored by git.
---
 .gitignore |    8 ++++++++
 1 files changed, 8 insertions(+), 0 deletions(-)

diff --git a/.gitignore b/.gitignore
index 39febd0..dd8f3ec 100644
--- a/.gitignore
+++ b/.gitignore
@@ -16,3 +16,11 @@ Makefile.in
 missing
 stamp-h
 stamp-h1
+*.a
+*.o
+*.lo
+*.la
+*~
+.deps
+.libs
+doc/cinelerra_cv_manual_en.txt
-- 
1.5.2.5

>From cec51e343cfd04ff1eeb9b6f0ecdcc5886d90347 Mon Sep 17 00:00:00 2001
From: Mark Carter <[EMAIL PROTECTED]>
Date: Sat, 3 Nov 2007 23:18:54 +0000
Subject: [PATCH] .gitignore *.rej

Added the following pattern to .gitignore:
*.rej
We don't want to see that rejected files (i.e. .rej) are untracked
---
 .gitignore |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diff --git a/.gitignore b/.gitignore
index dd8f3ec..0e239c9 100644
--- a/.gitignore
+++ b/.gitignore
@@ -24,3 +24,4 @@ stamp-h1
 .deps
 .libs
 doc/cinelerra_cv_manual_en.txt
+*.rej
-- 
1.5.2.5

>From 6a4cf19899f2dc8e717ccd96a4a15ebb5386138d Mon Sep 17 00:00:00 2001
From: Mark Carter <[EMAIL PROTECTED]>
Date: Sun, 4 Nov 2007 09:46:42 +0000
Subject: [PATCH] .gitignore quicktime/ffmpeg/avconfig.h,config.mak

In directory quicktime/ffmpeg, the following files are automaticially generated:
	avconfig.h
	config.mak
We should therefore ignore them as possible git commit files.
---
 .gitignore |    2 ++
 1 files changed, 2 insertions(+), 0 deletions(-)

diff --git a/.gitignore b/.gitignore
index 0e239c9..7e561a3 100644
--- a/.gitignore
+++ b/.gitignore
@@ -25,3 +25,5 @@ stamp-h1
 .libs
 doc/cinelerra_cv_manual_en.txt
 *.rej
+quicktime/ffmpeg/avconfig.h
+quicktime/ffmpeg/config.mak
-- 
1.5.2.5

>From 2376c0a7cdeedac58223ca37567b4e6b1e0fe564 Mon Sep 17 00:00:00 2001
From: Mark Carter <[EMAIL PROTECTED]>
Date: Sun, 4 Nov 2007 09:50:20 +0000
Subject: [PATCH] .gitignore cinelerra/versioninfo.h

versioninfo.h is automatically generated, so should be ignored for git
commit purposes.
---
 cinelerra/.gitignore |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diff --git a/cinelerra/.gitignore b/cinelerra/.gitignore
index 282522d..9900a9b 100644
--- a/cinelerra/.gitignore
+++ b/cinelerra/.gitignore
@@ -1,2 +1,3 @@
 Makefile
 Makefile.in
+versioninfo.h
-- 
1.5.2.5

>From 069b126ef1b78ebfd05f2e1af8343dd483b4e393 Mon Sep 17 00:00:00 2001
From: Mark Carter <[EMAIL PROTECTED]>
Date: Sun, 4 Nov 2007 09:58:40 +0000
Subject: [PATCH] Reshuffle storage of files within .gitgnore

In the top level of .gitgnore, I had the listed the files:
* doc/cinelerra_cv_manual_en.txt
* quicktime/ffmpeg/avconfig.h
* quicktime/ffmpeg/config.mak

I decided that it was not a good idea to keep files buried in subdirs in
the top-level .gitignore, so I have removed them from the top-level
.ignore and moved them into the subdir .gitignore, where they more
properly belong.
---
 .gitignore                  |    3 ---
 doc/.gitignore              |    1 +
 quicktime/ffmpeg/.gitignore |    2 ++
 3 files changed, 3 insertions(+), 3 deletions(-)
 create mode 100644 doc/.gitignore

diff --git a/.gitignore b/.gitignore
index 7e561a3..b7ee796 100644
--- a/.gitignore
+++ b/.gitignore
@@ -23,7 +23,4 @@ stamp-h1
 *~
 .deps
 .libs
-doc/cinelerra_cv_manual_en.txt
 *.rej
-quicktime/ffmpeg/avconfig.h
-quicktime/ffmpeg/config.mak
diff --git a/doc/.gitignore b/doc/.gitignore
new file mode 100644
index 0000000..512fe21
--- /dev/null
+++ b/doc/.gitignore
@@ -0,0 +1 @@
+cinelerra_cv_manual_en.txt
diff --git a/quicktime/ffmpeg/.gitignore b/quicktime/ffmpeg/.gitignore
index 282522d..ef18fed 100644
--- a/quicktime/ffmpeg/.gitignore
+++ b/quicktime/ffmpeg/.gitignore
@@ -1,2 +1,4 @@
 Makefile
 Makefile.in
+avconfig.h
+config.mak
-- 
1.5.2.5

Reply via email to