Skip to content

Commit bfdf98c

Browse files
committed
Added license information to all files.
1 parent 95a83a7 commit bfdf98c

32 files changed

+188
-2
lines changed

README

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Tom Preston-Werner and Chris Wanstrath.
99

1010
.. _grit: http://grit.rubyforge.org
1111

12-
The ``method_missing`` stuff was `taken from this blog post`_.
12+
The idea for the ``method_missing`` stuff was `taken from this blog post`_.
1313

1414
.. _taken from this blog post: http://blog.iffy.us/?p=43
1515

lib/git/__init__.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
# __init__.py
2+
# Copyright (C) 2008 Michael Trier ([email protected]) and contributors
3+
#
4+
# This module is part of GitPython and is released under
5+
# the BSD License: http://www.opensource.org/licenses/bsd-license.php
6+
17
import os
28
import inspect
39

lib/git/actor.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
# actor.py
2+
# Copyright (C) 2008 Michael Trier ([email protected]) and contributors
3+
#
4+
# This module is part of GitPython and is released under
5+
# the BSD License: http://www.opensource.org/licenses/bsd-license.php
6+
17
import re
28

39
class Actor(object):

lib/git/blob.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
# blob.py
2+
# Copyright (C) 2008 Michael Trier ([email protected]) and contributors
3+
#
4+
# This module is part of GitPython and is released under
5+
# the BSD License: http://www.opensource.org/licenses/bsd-license.php
6+
17
import mimetypes
28
import os
39
import re

lib/git/cmd.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
# cmd.py
2+
# Copyright (C) 2008 Michael Trier ([email protected]) and contributors
3+
#
4+
# This module is part of GitPython and is released under
5+
# the BSD License: http://www.opensource.org/licenses/bsd-license.php
6+
17
import os
28
import subprocess
39
import re

lib/git/commit.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
# commit.py
2+
# Copyright (C) 2008 Michael Trier ([email protected]) and contributors
3+
#
4+
# This module is part of GitPython and is released under
5+
# the BSD License: http://www.opensource.org/licenses/bsd-license.php
6+
17
import re
28
import time
39

lib/git/diff.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
# diff.py
2+
# Copyright (C) 2008 Michael Trier ([email protected]) and contributors
3+
#
4+
# This module is part of GitPython and is released under
5+
# the BSD License: http://www.opensource.org/licenses/bsd-license.php
6+
17
import re
28
import commit
39

lib/git/errors.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
# errors.py
2+
# Copyright (C) 2008 Michael Trier ([email protected]) and contributors
3+
#
4+
# This module is part of GitPython and is released under
5+
# the BSD License: http://www.opensource.org/licenses/bsd-license.php
6+
17
class InvalidGitRepositoryError(Exception):
28
pass
39

lib/git/head.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
# head.py
2+
# Copyright (C) 2008 Michael Trier ([email protected]) and contributors
3+
#
4+
# This module is part of GitPython and is released under
5+
# the BSD License: http://www.opensource.org/licenses/bsd-license.php
6+
17
import commit
28

39
class Head(object):

lib/git/lazy.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
# lazy.py
2+
# Copyright (C) 2008 Michael Trier ([email protected]) and contributors
3+
#
4+
# This module is part of GitPython and is released under
5+
# the BSD License: http://www.opensource.org/licenses/bsd-license.php
6+
17
class LazyMixin(object):
28
lazy_properties = []
39

0 commit comments

Comments
 (0)