diff options
author | Máximo Cuadros <mcuadros@gmail.com> | 2018-10-15 11:16:42 +0200 |
---|---|---|
committer | Máximo Cuadros <mcuadros@gmail.com> | 2018-10-15 11:16:42 +0200 |
commit | 987c03a3cef828894fabe4ffdcafd2a90e908e4a (patch) | |
tree | fe618979bcf565e093749f6b0886a735b62404d8 /repository.go | |
parent | f69f5304328165153e452382f44aa2b41df36d0f (diff) | |
download | go-git-987c03a3cef828894fabe4ffdcafd2a90e908e4a.tar.gz |
repository: allow open non-bare repositories as bare
Signed-off-by: Máximo Cuadros <mcuadros@gmail.com>
Diffstat (limited to 'repository.go')
-rw-r--r-- | repository.go | 13 |
1 files changed, 4 insertions, 9 deletions
diff --git a/repository.go b/repository.go index be1f057..08b822c 100644 --- a/repository.go +++ b/repository.go @@ -175,15 +175,6 @@ func Open(s storage.Storer, worktree billy.Filesystem) (*Repository, error) { return nil, err } - cfg, err := s.Config() - if err != nil { - return nil, err - } - - if !cfg.Core.IsBare && worktree == nil { - return nil, ErrWorktreeNotProvided - } - return newRepository(s, worktree), nil } @@ -335,6 +326,8 @@ func dotGitFileToOSFilesystem(path string, fs billy.Filesystem) (bfs billy.Files // PlainClone a repository into the path with the given options, isBare defines // if the new repository will be bare or normal. If the path is not empty // ErrRepositoryAlreadyExists is returned. +// +// TODO(mcuadros): move isBare to CloneOptions in v5 func PlainClone(path string, isBare bool, o *CloneOptions) (*Repository, error) { return PlainCloneContext(context.Background(), path, isBare, o) } @@ -346,6 +339,8 @@ func PlainClone(path string, isBare bool, o *CloneOptions) (*Repository, error) // The provided Context must be non-nil. If the context expires before the // operation is complete, an error is returned. The context only affects to the // transport operations. +// +// TODO(mcuadros): move isBare to CloneOptions in v5 func PlainCloneContext(ctx context.Context, path string, isBare bool, o *CloneOptions) (*Repository, error) { r, err := PlainInit(path, isBare) if err != nil { |