Skip to content

Commit

Permalink
Add copyright notices.
Browse files Browse the repository at this point in the history
The tool interface sucks (especially "committing" information, which is just
me doing everything by hand from the command line), but I think this is in
theory actually a viable way of describing the world. So copyright it.
  • Loading branch information
Linus Torvalds committed Apr 7, 2005
1 parent e83c516 commit 8bc9a0c
Show file tree
Hide file tree
Showing 8 changed files with 40 additions and 0 deletions.
5 changes: 5 additions & 0 deletions cat-file.c
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
/*
* GIT - The information manager from hell
*
* Copyright (C) Linus Torvalds, 2005
*/
#include "cache.h"

int main(int argc, char **argv)
Expand Down
5 changes: 5 additions & 0 deletions commit-tree.c
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
/*
* GIT - The information manager from hell
*
* Copyright (C) Linus Torvalds, 2005
*/
#include "cache.h"

#include <pwd.h>
Expand Down
5 changes: 5 additions & 0 deletions init-db.c
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
/*
* GIT - The information manager from hell
*
* Copyright (C) Linus Torvalds, 2005
*/
#include "cache.h"

int main(int argc, char **argv)
Expand Down
5 changes: 5 additions & 0 deletions read-cache.c
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
/*
* GIT - The information manager from hell
*
* Copyright (C) Linus Torvalds, 2005
*/
#include "cache.h"

const char *sha1_file_directory = NULL;
Expand Down
5 changes: 5 additions & 0 deletions read-tree.c
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
/*
* GIT - The information manager from hell
*
* Copyright (C) Linus Torvalds, 2005
*/
#include "cache.h"

static int unpack(unsigned char *sha1)
Expand Down
5 changes: 5 additions & 0 deletions show-diff.c
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
/*
* GIT - The information manager from hell
*
* Copyright (C) Linus Torvalds, 2005
*/
#include "cache.h"

#define MTIME_CHANGED 0x0001
Expand Down
5 changes: 5 additions & 0 deletions update-cache.c
Original file line number Diff line number Diff line change
@@ -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)
Expand Down
5 changes: 5 additions & 0 deletions write-tree.c
Original file line number Diff line number Diff line change
@@ -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)
Expand Down

0 comments on commit 8bc9a0c

Please sign in to comment.