diff options
author | Kostis Anagnostopoulos <ankostis@gmail.com> | 2016-10-04 14:29:28 +0200 |
---|---|---|
committer | Kostis Anagnostopoulos <ankostis@gmail.com> | 2016-10-12 23:31:43 +0200 |
commit | 4b586fbb94d5acc6e06980a8a96f66771280beda (patch) | |
tree | 87f63f2916114b56ade83d0b9653d1d4b61f263c /git/repo/base.py | |
parent | 8ea7e265d1549613c12cbe42a2e012527c1a97e4 (diff) | |
download | gitpython-4b586fbb94d5acc6e06980a8a96f66771280beda.tar.gz |
daemon, #525: FIX remote urls in config-files
+ Parse most remote & config-urls \-->/.
+ Used relative daemon-paths.
+ Use git-daemon PORT above 10k; on Windows all below need Admin rights.
+FIXED git-daemon @with_rw_and_rw_remote_repo():
+ test_base.test_with_rw_remote_and_rw_repo() PASS.
+ test_remote.test_base() now freezes! (so still hidden win_err)
+ repo_test: minor finally delete test-repos created inside this repo.
+ util: delete unused `absolute_project_path()`.
Diffstat (limited to 'git/repo/base.py')
-rw-r--r-- | git/repo/base.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/git/repo/base.py b/git/repo/base.py index 4e9549ee..c5cdce7c 100644 --- a/git/repo/base.py +++ b/git/repo/base.py @@ -897,7 +897,7 @@ class Repo(object): repo = cls(path, odbt=odbt) if repo.remotes: with repo.remotes[0].config_writer as writer: - writer.set_value('url', repo.remotes[0].url.replace("\\\\", "\\").replace("\\", "/")) + writer.set_value('url', Git.polish_url(repo.remotes[0].url)) # END handle remote repo return repo |