diff options
author | Ashok Pon Kumar <ashokponkumar@gmail.com> | 2020-09-02 00:01:12 +0530 |
---|---|---|
committer | Ashok Pon Kumar <ashokponkumar@gmail.com> | 2020-09-02 00:01:12 +0530 |
commit | e7be6a4e2442826f9a54f2d40e9658552972c644 (patch) | |
tree | a26312ac281bec5760d33064cc940609c1961e09 | |
parent | 6da5e5958ecc0e6f8da6ee2b6714e50b8ef26df4 (diff) | |
download | go-git-e7be6a4e2442826f9a54f2d40e9658552972c644.tar.gz |
support file path in PlainOpenWithOptions
-rw-r--r-- | repository.go | 8 | ||||
-rw-r--r-- | repository_test.go | 10 |
2 files changed, 18 insertions, 0 deletions
diff --git a/repository.go b/repository.go index 9dd35be..d954333 100644 --- a/repository.go +++ b/repository.go @@ -278,6 +278,14 @@ func dotGitToOSFilesystems(path string, detect bool) (dot, wt billy.Filesystem, if path, err = filepath.Abs(path); err != nil { return nil, nil, err } + + pathinfo, err := os.Stat(path) + if !os.IsNotExist(err) { + if !pathinfo.IsDir() { + path = filepath.Dir(path) + } + } + var fs billy.Filesystem var fi os.FileInfo for { diff --git a/repository_test.go b/repository_test.go index 6a6ab9e..9433a3c 100644 --- a/repository_test.go +++ b/repository_test.go @@ -569,6 +569,11 @@ func (s *RepositorySuite) TestPlainOpenDetectDotGit(c *C) { err = os.MkdirAll(subdir, 0755) c.Assert(err, IsNil) + file := filepath.Join(subdir, "file.txt") + f, err := os.Create(file) + c.Assert(err, IsNil) + f.Close() + r, err := PlainInit(dir, false) c.Assert(err, IsNil) c.Assert(r, NotNil) @@ -577,6 +582,11 @@ func (s *RepositorySuite) TestPlainOpenDetectDotGit(c *C) { r, err = PlainOpenWithOptions(subdir, opt) c.Assert(err, IsNil) c.Assert(r, NotNil) + + opt = &PlainOpenOptions{DetectDotGit: true} + r, err = PlainOpenWithOptions(file, opt) + c.Assert(err, IsNil) + c.Assert(r, NotNil) } func (s *RepositorySuite) TestPlainOpenNotExistsDetectDotGit(c *C) { |