Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit e0769d1

Browse files
Fix top-of-file license URLs here in gitdb too
This is the gitdb part of the fix for the top-of-file license URLs that have come to point to a page about a related but different license from the one GitPython and gitdb are (intended to be) offered under. See gitpython-developers/GitPython#1662 for details about the problem and how it came about.
1 parent d24f019 commit e0769d1

33 files changed

+40
-40
lines changed

‎gitdb/__init__.py‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Copyright (C) 2010, 2011 Sebastian Thiel (byronimo@gmail.com) and contributors
22
#
33
# This module is part of GitDB and is released under
4-
# the New BSD License: http://www.opensource.org/licenses/bsd-license.php
4+
# the New BSD License: https://opensource.org/license/bsd-3-clause/
55
"""Initialize the object database module"""
66

77
import sys

‎gitdb/base.py‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Copyright (C) 2010, 2011 Sebastian Thiel (byronimo@gmail.com) and contributors
22
#
33
# This module is part of GitDB and is released under
4-
# the New BSD License: http://www.opensource.org/licenses/bsd-license.php
4+
# the New BSD License: https://opensource.org/license/bsd-3-clause/
55
"""Module with basic data structures - they are designed to be lightweight and fast"""
66
from gitdb.util import bin_to_hex
77

‎gitdb/db/__init__.py‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Copyright (C) 2010, 2011 Sebastian Thiel (byronimo@gmail.com) and contributors
22
#
33
# This module is part of GitDB and is released under
4-
# the New BSD License: http://www.opensource.org/licenses/bsd-license.php
4+
# the New BSD License: https://opensource.org/license/bsd-3-clause/
55

66
from gitdb.db.base import *
77
from gitdb.db.loose import *

‎gitdb/db/base.py‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Copyright (C) 2010, 2011 Sebastian Thiel (byronimo@gmail.com) and contributors
22
#
33
# This module is part of GitDB and is released under
4-
# the New BSD License: http://www.opensource.org/licenses/bsd-license.php
4+
# the New BSD License: https://opensource.org/license/bsd-3-clause/
55
"""Contains implementations of database retrieveing objects"""
66
from gitdb.util import (
77
join,

‎gitdb/db/git.py‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Copyright (C) 2010, 2011 Sebastian Thiel (byronimo@gmail.com) and contributors
22
#
33
# This module is part of GitDB and is released under
4-
# the New BSD License: http://www.opensource.org/licenses/bsd-license.php
4+
# the New BSD License: https://opensource.org/license/bsd-3-clause/
55
from gitdb.db.base import (
66
CompoundDB,
77
ObjectDBW,

‎gitdb/db/loose.py‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Copyright (C) 2010, 2011 Sebastian Thiel (byronimo@gmail.com) and contributors
22
#
33
# This module is part of GitDB and is released under
4-
# the New BSD License: http://www.opensource.org/licenses/bsd-license.php
4+
# the New BSD License: https://opensource.org/license/bsd-3-clause/
55
from gitdb.db.base import (
66
FileDBBase,
77
ObjectDBR,

‎gitdb/db/mem.py‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Copyright (C) 2010, 2011 Sebastian Thiel (byronimo@gmail.com) and contributors
22
#
33
# This module is part of GitDB and is released under
4-
# the New BSD License: http://www.opensource.org/licenses/bsd-license.php
4+
# the New BSD License: https://opensource.org/license/bsd-3-clause/
55
"""Contains the MemoryDatabase implementation"""
66
from gitdb.db.loose import LooseObjectDB
77
from gitdb.db.base import (

‎gitdb/db/pack.py‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Copyright (C) 2010, 2011 Sebastian Thiel (byronimo@gmail.com) and contributors
22
#
33
# This module is part of GitDB and is released under
4-
# the New BSD License: http://www.opensource.org/licenses/bsd-license.php
4+
# the New BSD License: https://opensource.org/license/bsd-3-clause/
55
"""Module containing a database to deal with packs"""
66
from gitdb.db.base import (
77
FileDBBase,

‎gitdb/db/ref.py‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Copyright (C) 2010, 2011 Sebastian Thiel (byronimo@gmail.com) and contributors
22
#
33
# This module is part of GitDB and is released under
4-
# the New BSD License: http://www.opensource.org/licenses/bsd-license.php
4+
# the New BSD License: https://opensource.org/license/bsd-3-clause/
55
import codecs
66
from gitdb.db.base import (
77
CompoundDB,

‎gitdb/exc.py‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Copyright (C) 2010, 2011 Sebastian Thiel (byronimo@gmail.com) and contributors
22
#
33
# This module is part of GitDB and is released under
4-
# the New BSD License: http://www.opensource.org/licenses/bsd-license.php
4+
# the New BSD License: https://opensource.org/license/bsd-3-clause/
55
"""Module with common exceptions"""
66
from gitdb.util import to_hex_sha
77

0 commit comments

Comments
(0)

AltStyle によって変換されたページ (->オリジナル) /