Movatterモバイル変換


[0]ホーム

URL:


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

Commit7d88c89

Browse files
authored
Merge pull request#1662 from EliahKagan/license-ambiguity
Fix URLs that were redirecting to another license
2 parentse8c3085 +ae8c018 commit7d88c89

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

41 files changed

+43
-44
lines changed

‎git/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# Copyright (C) 2008, 2009 Michael Trier (mtrier@gmail.com) and contributors
33
#
44
# This module is part of GitPython and is released under
5-
# the BSD License:http://www.opensource.org/licenses/bsd-license.php
5+
# the BSD License:https://opensource.org/license/bsd-3-clause/
66
# flake8: noqa
77
# @PydevCodeAnalysisIgnore
88
fromgit.excimport*# @NoMove @IgnorePep8

‎git/cmd.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# Copyright (C) 2008, 2009 Michael Trier (mtrier@gmail.com) and contributors
33
#
44
# This module is part of GitPython and is released under
5-
# the BSD License:http://www.opensource.org/licenses/bsd-license.php
5+
# the BSD License:https://opensource.org/license/bsd-3-clause/
66
from __future__importannotations
77
importre
88
importcontextlib

‎git/compat.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# Copyright (C) 2008, 2009 Michael Trier (mtrier@gmail.com) and contributors
44
#
55
# This module is part of GitPython and is released under
6-
# the BSD License:http://www.opensource.org/licenses/bsd-license.php
6+
# the BSD License:https://opensource.org/license/bsd-3-clause/
77
"""utilities to help provide compatibility with python 3"""
88
# flake8: noqa
99

‎git/config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# Copyright (C) 2008, 2009 Michael Trier (mtrier@gmail.com) and contributors
33
#
44
# This module is part of GitPython and is released under
5-
# the BSD License:http://www.opensource.org/licenses/bsd-license.php
5+
# the BSD License:https://opensource.org/license/bsd-3-clause/
66
"""Module containing module parser implementation able to properly read and write
77
configuration files"""
88

‎git/diff.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# Copyright (C) 2008, 2009 Michael Trier (mtrier@gmail.com) and contributors
33
#
44
# This module is part of GitPython and is released under
5-
# the BSD License:http://www.opensource.org/licenses/bsd-license.php
5+
# the BSD License:https://opensource.org/license/bsd-3-clause/
66

77
importre
88
fromgit.cmdimporthandle_process_output

‎git/exc.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# Copyright (C) 2008, 2009 Michael Trier (mtrier@gmail.com) and contributors
33
#
44
# This module is part of GitPython and is released under
5-
# the BSD License:http://www.opensource.org/licenses/bsd-license.php
5+
# the BSD License:https://opensource.org/license/bsd-3-clause/
66
""" Module containing all exceptions thrown throughout the git package, """
77

88
fromgitdb.excimportBadName# NOQA @UnusedWildImport skipcq: PYL-W0401, PYL-W0614

‎git/index/base.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# Copyright (C) 2008, 2009 Michael Trier (mtrier@gmail.com) and contributors
33
#
44
# This module is part of GitPython and is released under
5-
# the BSD License:http://www.opensource.org/licenses/bsd-license.php
5+
# the BSD License:https://opensource.org/license/bsd-3-clause/
66

77
fromcontextlibimportExitStack
88
importdatetime

‎git/objects/base.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# Copyright (C) 2008, 2009 Michael Trier (mtrier@gmail.com) and contributors
33
#
44
# This module is part of GitPython and is released under
5-
# the BSD License:http://www.opensource.org/licenses/bsd-license.php
5+
# the BSD License:https://opensource.org/license/bsd-3-clause/
66

77
fromgit.excimportWorkTreeRepositoryUnsupported
88
fromgit.utilimportLazyMixin,join_path_native,stream_copy,bin_to_hex

‎git/objects/blob.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# Copyright (C) 2008, 2009 Michael Trier (mtrier@gmail.com) and contributors
33
#
44
# This module is part of GitPython and is released under
5-
# the BSD License:http://www.opensource.org/licenses/bsd-license.php
5+
# the BSD License:https://opensource.org/license/bsd-3-clause/
66
frommimetypesimportguess_type
77
from .importbase
88

‎git/objects/commit.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# Copyright (C) 2008, 2009 Michael Trier (mtrier@gmail.com) and contributors
33
#
44
# This module is part of GitPython and is released under
5-
# the BSD License:http://www.opensource.org/licenses/bsd-license.php
5+
# the BSD License:https://opensource.org/license/bsd-3-clause/
66
importdatetime
77
importre
88
fromsubprocessimportPopen,PIPE

‎git/objects/tag.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# Copyright (C) 2008, 2009 Michael Trier (mtrier@gmail.com) and contributors
33
#
44
# This module is part of GitPython and is released under
5-
# the BSD License:http://www.opensource.org/licenses/bsd-license.php
5+
# the BSD License:https://opensource.org/license/bsd-3-clause/
66
""" Module containing all object based types. """
77
from .importbase
88
from .utilimportget_object_type_by_name,parse_actor_and_date

‎git/objects/tree.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# Copyright (C) 2008, 2009 Michael Trier (mtrier@gmail.com) and contributors
33
#
44
# This module is part of GitPython and is released under
5-
# the BSD License:http://www.opensource.org/licenses/bsd-license.php
5+
# the BSD License:https://opensource.org/license/bsd-3-clause/
66

77
fromgit.utilimportIterableList,join_path
88
importgit.diffasgit_diff

‎git/objects/util.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# Copyright (C) 2008, 2009 Michael Trier (mtrier@gmail.com) and contributors
33
#
44
# This module is part of GitPython and is released under
5-
# the BSD License:http://www.opensource.org/licenses/bsd-license.php
5+
# the BSD License:https://opensource.org/license/bsd-3-clause/
66
"""Module for general utility functions"""
77
# flake8: noqa F401
88

‎git/remote.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# Copyright (C) 2008, 2009 Michael Trier (mtrier@gmail.com) and contributors
33
#
44
# This module is part of GitPython and is released under
5-
# the BSD License:http://www.opensource.org/licenses/bsd-license.php
5+
# the BSD License:https://opensource.org/license/bsd-3-clause/
66

77
# Module implementing a remote object allowing easy access to git remotes
88
importlogging

‎git/repo/base.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# Copyright (C) 2008, 2009 Michael Trier (mtrier@gmail.com) and contributors
33
#
44
# This module is part of GitPython and is released under
5-
# the BSD License:http://www.opensource.org/licenses/bsd-license.php
5+
# the BSD License:https://opensource.org/license/bsd-3-clause/
66
from __future__importannotations
77
importlogging
88
importos

‎git/types.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# -*- coding: utf-8 -*-
22
# This module is part of GitPython and is released under
3-
# the BSD License:http://www.opensource.org/licenses/bsd-license.php
3+
# the BSD License:https://opensource.org/license/bsd-3-clause/
44
# flake8: noqa
55

66
importos

‎git/util.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# Copyright (C) 2008, 2009 Michael Trier (mtrier@gmail.com) and contributors
33
#
44
# This module is part of GitPython and is released under
5-
# the BSD License:http://www.opensource.org/licenses/bsd-license.php
5+
# the BSD License:https://opensource.org/license/bsd-3-clause/
66

77
fromabcimportabstractmethod
88
importos.pathasosp

‎test/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
# Copyright (C) 2008, 2009 Michael Trier (mtrier@gmail.com) and contributors
33
#
44
# This module is part of GitPython and is released under
5-
# the BSD License:http://www.opensource.org/licenses/bsd-license.php
5+
# the BSD License:https://opensource.org/license/bsd-3-clause/

‎test/lib/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# Copyright (C) 2008, 2009 Michael Trier (mtrier@gmail.com) and contributors
33
#
44
# This module is part of GitPython and is released under
5-
# the BSD License:http://www.opensource.org/licenses/bsd-license.php
5+
# the BSD License:https://opensource.org/license/bsd-3-clause/
66

77
# flake8: noqa
88
importinspect

‎test/lib/helper.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# Copyright (C) 2008, 2009 Michael Trier (mtrier@gmail.com) and contributors
33
#
44
# This module is part of GitPython and is released under
5-
# the BSD License:http://www.opensource.org/licenses/bsd-license.php
5+
# the BSD License:https://opensource.org/license/bsd-3-clause/
66
importcontextlib
77
fromfunctoolsimportwraps
88
importgc

‎test/performance/test_commit.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# Copyright (C) 2008, 2009 Michael Trier (mtrier@gmail.com) and contributors
33
#
44
# This module is part of GitPython and is released under
5-
# the BSD License:http://www.opensource.org/licenses/bsd-license.php
5+
# the BSD License:https://opensource.org/license/bsd-3-clause/
66
fromioimportBytesIO
77
fromtimeimporttime
88
importsys

‎test/test_actor.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# Copyright (C) 2008, 2009 Michael Trier (mtrier@gmail.com) and contributors
33
#
44
# This module is part of GitPython and is released under
5-
# the BSD License:http://www.opensource.org/licenses/bsd-license.php
5+
# the BSD License:https://opensource.org/license/bsd-3-clause/
66

77
fromtest.libimportTestBase
88
fromgitimportActor

‎test/test_base.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# Copyright (C) 2008, 2009 Michael Trier (mtrier@gmail.com) and contributors
44
#
55
# This module is part of GitPython and is released under
6-
# the BSD License:http://www.opensource.org/licenses/bsd-license.php
6+
# the BSD License:https://opensource.org/license/bsd-3-clause/
77
importos
88
importsys
99
importtempfile

‎test/test_blob.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# Copyright (C) 2008, 2009 Michael Trier (mtrier@gmail.com) and contributors
33
#
44
# This module is part of GitPython and is released under
5-
# the BSD License:http://www.opensource.org/licenses/bsd-license.php
5+
# the BSD License:https://opensource.org/license/bsd-3-clause/
66

77
fromtest.libimportTestBase
88
fromgitimportBlob

‎test/test_clone.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# -*- coding: utf-8 -*-
22
# This module is part of GitPython and is released under
3-
# the BSD License:http://www.opensource.org/licenses/bsd-license.php
3+
# the BSD License:https://opensource.org/license/bsd-3-clause/
44

55
frompathlibimportPath
66
importre

‎test/test_commit.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# Copyright (C) 2008, 2009 Michael Trier (mtrier@gmail.com) and contributors
44
#
55
# This module is part of GitPython and is released under
6-
# the BSD License:http://www.opensource.org/licenses/bsd-license.php
6+
# the BSD License:https://opensource.org/license/bsd-3-clause/
77
importcopy
88
fromdatetimeimportdatetime
99
fromioimportBytesIO

‎test/test_config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# Copyright (C) 2008, 2009 Michael Trier (mtrier@gmail.com) and contributors
33
#
44
# This module is part of GitPython and is released under
5-
# the BSD License:http://www.opensource.org/licenses/bsd-license.php
5+
# the BSD License:https://opensource.org/license/bsd-3-clause/
66

77
importglob
88
importio

‎test/test_db.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# Copyright (C) 2008, 2009 Michael Trier (mtrier@gmail.com) and contributors
33
#
44
# This module is part of GitPython and is released under
5-
# the BSD License:http://www.opensource.org/licenses/bsd-license.php
5+
# the BSD License:https://opensource.org/license/bsd-3-clause/
66
fromgit.dbimportGitCmdObjectDB
77
fromgit.excimportBadObject
88
fromtest.libimportTestBase

‎test/test_diff.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# Copyright (C) 2008, 2009 Michael Trier (mtrier@gmail.com) and contributors
44
#
55
# This module is part of GitPython and is released under
6-
# the BSD License:http://www.opensource.org/licenses/bsd-license.php
6+
# the BSD License:https://opensource.org/license/bsd-3-clause/
77
importddt
88
importshutil
99
importtempfile
@@ -414,7 +414,7 @@ def test_diff_interface(self):
414414

415415
@with_rw_directory
416416
deftest_rename_override(self,rw_dir):
417-
"""Test disabling of diff rename detection"""
417+
"""Test disabling of diff rename detection"""
418418

419419
# create and commit file_a.txt
420420
repo=Repo.init(rw_dir)
@@ -480,4 +480,3 @@ def test_rename_override(self, rw_dir):
480480
self.assertEqual(True,diff.renamed_file)
481481
self.assertEqual('file_a.txt',diff.rename_from)
482482
self.assertEqual('file_b.txt',diff.rename_to)
483-

‎test/test_docs.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# Copyright (C) 2008, 2009 Michael Trier (mtrier@gmail.com) and contributors
44
#
55
# This module is part of GitPython and is released under
6-
# the BSD License:http://www.opensource.org/licenses/bsd-license.php
6+
# the BSD License:https://opensource.org/license/bsd-3-clause/
77
importos
88
importsys
99

‎test/test_exc.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# Copyright (C) 2008, 2009, 2016 Michael Trier (mtrier@gmail.com) and contributors
44
#
55
# This module is part of GitPython and is released under
6-
# the BSD License:http://www.opensource.org/licenses/bsd-license.php
6+
# the BSD License:https://opensource.org/license/bsd-3-clause/
77

88

99
importre

‎test/test_git.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# Copyright (C) 2008, 2009 Michael Trier (mtrier@gmail.com) and contributors
44
#
55
# This module is part of GitPython and is released under
6-
# the BSD License:http://www.opensource.org/licenses/bsd-license.php
6+
# the BSD License:https://opensource.org/license/bsd-3-clause/
77
importos
88
importshutil
99
importsubprocess

‎test/test_index.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# Copyright (C) 2008, 2009 Michael Trier (mtrier@gmail.com) and contributors
44
#
55
# This module is part of GitPython and is released under
6-
# the BSD License:http://www.opensource.org/licenses/bsd-license.php
6+
# the BSD License:https://opensource.org/license/bsd-3-clause/
77

88
fromioimportBytesIO
99
importos
@@ -953,4 +953,4 @@ def test_index_add_pathlike(self, rw_repo):
953953
file=git_dir/"file.txt"
954954
file.touch()
955955

956-
rw_repo.index.add(file)
956+
rw_repo.index.add(file)

‎test/test_installation.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# This module is part of GitPython and is released under
2-
# the BSD License:http://www.opensource.org/licenses/bsd-license.php
2+
# the BSD License:https://opensource.org/license/bsd-3-clause/
33

44
importast
55
importos

‎test/test_refs.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# Copyright (C) 2008, 2009 Michael Trier (mtrier@gmail.com) and contributors
33
#
44
# This module is part of GitPython and is released under
5-
# the BSD License:http://www.opensource.org/licenses/bsd-license.php
5+
# the BSD License:https://opensource.org/license/bsd-3-clause/
66

77
fromitertoolsimportchain
88
frompathlibimportPath

‎test/test_remote.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# Copyright (C) 2008, 2009 Michael Trier (mtrier@gmail.com) and contributors
33
#
44
# This module is part of GitPython and is released under
5-
# the BSD License:http://www.opensource.org/licenses/bsd-license.php
5+
# the BSD License:https://opensource.org/license/bsd-3-clause/
66

77
importrandom
88
importtempfile

‎test/test_repo.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# Copyright (C) 2008, 2009 Michael Trier (mtrier@gmail.com) and contributors
44
#
55
# This module is part of GitPython and is released under
6-
# the BSD License:http://www.opensource.org/licenses/bsd-license.php
6+
# the BSD License:https://opensource.org/license/bsd-3-clause/
77
importglob
88
importio
99
fromioimportBytesIO

‎test/test_stats.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# Copyright (C) 2008, 2009 Michael Trier (mtrier@gmail.com) and contributors
33
#
44
# This module is part of GitPython and is released under
5-
# the BSD License:http://www.opensource.org/licenses/bsd-license.php
5+
# the BSD License:https://opensource.org/license/bsd-3-clause/
66

77
fromtest.libimportTestBase,fixture
88
fromgitimportStats

‎test/test_submodule.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# -*- coding: utf-8 -*-
22
# This module is part of GitPython and is released under
3-
# the BSD License:http://www.opensource.org/licenses/bsd-license.php
3+
# the BSD License:https://opensource.org/license/bsd-3-clause/
44
importcontextlib
55
importos
66
importshutil

‎test/test_tree.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# Copyright (C) 2008, 2009 Michael Trier (mtrier@gmail.com) and contributors
33
#
44
# This module is part of GitPython and is released under
5-
# the BSD License:http://www.opensource.org/licenses/bsd-license.php
5+
# the BSD License:https://opensource.org/license/bsd-3-clause/
66

77
fromioimportBytesIO
88
fromunittestimportskipIf

‎test/test_util.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# Copyright (C) 2008, 2009 Michael Trier (mtrier@gmail.com) and contributors
33
#
44
# This module is part of GitPython and is released under
5-
# the BSD License:http://www.opensource.org/licenses/bsd-license.php
5+
# the BSD License:https://opensource.org/license/bsd-3-clause/
66

77
importos
88
importpickle

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp