aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--cat-file.c5
-rw-r--r--commit-tree.c5
-rw-r--r--init-db.c5
-rw-r--r--read-cache.c5
-rw-r--r--read-tree.c5
-rw-r--r--show-diff.c5
-rw-r--r--update-cache.c5
-rw-r--r--write-tree.c5
8 files changed, 40 insertions, 0 deletions
diff --git a/cat-file.c b/cat-file.c
index 74a0a234d..d8f0121e4 100644
--- a/cat-file.c
+++ b/cat-file.c
@@ -1,3 +1,8 @@
+/*
+ * GIT - The information manager from hell
+ *
+ * Copyright (C) Linus Torvalds, 2005
+ */
#include "cache.h"
int main(int argc, char **argv)
diff --git a/commit-tree.c b/commit-tree.c
index 840307af0..0d7852f7f 100644
--- a/commit-tree.c
+++ b/commit-tree.c
@@ -1,3 +1,8 @@
+/*
+ * GIT - The information manager from hell
+ *
+ * Copyright (C) Linus Torvalds, 2005
+ */
#include "cache.h"
#include <pwd.h>
diff --git a/init-db.c b/init-db.c
index 25dc13fe1..bc6508636 100644
--- a/init-db.c
+++ b/init-db.c
@@ -1,3 +1,8 @@
+/*
+ * GIT - The information manager from hell
+ *
+ * Copyright (C) Linus Torvalds, 2005
+ */
#include "cache.h"
int main(int argc, char **argv)
diff --git a/read-cache.c b/read-cache.c
index c924a6e0f..b151981c1 100644
--- a/read-cache.c
+++ b/read-cache.c
@@ -1,3 +1,8 @@
+/*
+ * GIT - The information manager from hell
+ *
+ * Copyright (C) Linus Torvalds, 2005
+ */
#include "cache.h"
const char *sha1_file_directory = NULL;
diff --git a/read-tree.c b/read-tree.c
index 1b47742d8..997343e13 100644
--- a/read-tree.c
+++ b/read-tree.c
@@ -1,3 +1,8 @@
+/*
+ * GIT - The information manager from hell
+ *
+ * Copyright (C) Linus Torvalds, 2005
+ */
#include "cache.h"
static int unpack(unsigned char *sha1)
diff --git a/show-diff.c b/show-diff.c
index b8522886a..e7aa60b4a 100644
--- a/show-diff.c
+++ b/show-diff.c
@@ -1,3 +1,8 @@
+/*
+ * GIT - The information manager from hell
+ *
+ * Copyright (C) Linus Torvalds, 2005
+ */
#include "cache.h"
#define MTIME_CHANGED 0x0001
diff --git a/update-cache.c b/update-cache.c
index 5085a5cb5..0bcd5d408 100644
--- a/update-cache.c
+++ b/update-cache.c
@@ -1,3 +1,8 @@
+/*
+ * GIT - The information manager from hell
+ *
+ * Copyright (C) Linus Torvalds, 2005
+ */
#include "cache.h"
static int cache_name_compare(const char *name1, int len1, const char *name2, int len2)
diff --git a/write-tree.c b/write-tree.c
index 921f98135..012eeeff1 100644
--- a/write-tree.c
+++ b/write-tree.c
@@ -1,3 +1,8 @@
+/*
+ * GIT - The information manager from hell
+ *
+ * Copyright (C) Linus Torvalds, 2005
+ */
#include "cache.h"
static int check_valid_sha1(unsigned char *sha1)