Skip to content
This repository was archived by the owner on Sep 11, 2020. It is now read-only.

Commit 6b33126

Browse files
author
kuba--
committed
git: worktree, Skip special git directory. Fixes #814
Signed-off-by: kuba-- <[email protected]>
1 parent b30763c commit 6b33126

5 files changed

+62
-8
lines changed

.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -1 +1,4 @@
11
coverage.out
2+
*~
3+
coverage.txt
4+
profile.out

example_test.go

+8-2
Original file line numberDiff line numberDiff line change
@@ -24,12 +24,18 @@ func ExampleClone() {
2424

2525
// Clones the repository into the worktree (fs) and storer all the .git
2626
// content into the storer
27-
_, _ = git.Clone(storer, fs, &git.CloneOptions{
27+
_, err := git.Clone(storer, fs, &git.CloneOptions{
2828
URL: "https://github.com/git-fixtures/basic.git",
2929
})
30+
if err != nil {
31+
log.Fatal(err)
32+
}
3033

3134
// Prints the content of the CHANGELOG file from the cloned repository
32-
changelog, _ := fs.Open("CHANGELOG")
35+
changelog, err := fs.Open("CHANGELOG")
36+
if err != nil {
37+
log.Fatal(err)
38+
}
3339

3440
io.Copy(os.Stdout, changelog)
3541
// Output: Initial changelog

repository.go

+9-6
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,9 @@ import (
2424
"gopkg.in/src-d/go-billy.v4/osfs"
2525
)
2626

27+
// GitDirName this is a special folder where all the git stuff is.
28+
const GitDirName = ".git"
29+
2730
var (
2831
// ErrBranchExists an error stating the specified branch already exists
2932
ErrBranchExists = errors.New("branch already exists")
@@ -113,12 +116,12 @@ func createDotGitFile(worktree, storage billy.Filesystem) error {
113116
path = storage.Root()
114117
}
115118

116-
if path == ".git" {
119+
if path == GitDirName {
117120
// not needed, since the folder is the default place
118121
return nil
119122
}
120123

121-
f, err := worktree.Create(".git")
124+
f, err := worktree.Create(GitDirName)
122125
if err != nil {
123126
return err
124127
}
@@ -214,7 +217,7 @@ func PlainInit(path string, isBare bool) (*Repository, error) {
214217
dot = osfs.New(path)
215218
} else {
216219
wt = osfs.New(path)
217-
dot, _ = wt.Chroot(".git")
220+
dot, _ = wt.Chroot(GitDirName)
218221
}
219222

220223
s, err := filesystem.NewStorage(dot)
@@ -265,7 +268,7 @@ func dotGitToOSFilesystems(path string, detect bool) (dot, wt billy.Filesystem,
265268
var fi os.FileInfo
266269
for {
267270
fs = osfs.New(path)
268-
fi, err = fs.Stat(".git")
271+
fi, err = fs.Stat(GitDirName)
269272
if err == nil {
270273
// no error; stop
271274
break
@@ -288,7 +291,7 @@ func dotGitToOSFilesystems(path string, detect bool) (dot, wt billy.Filesystem,
288291
}
289292

290293
if fi.IsDir() {
291-
dot, err = fs.Chroot(".git")
294+
dot, err = fs.Chroot(GitDirName)
292295
return dot, fs, err
293296
}
294297

@@ -301,7 +304,7 @@ func dotGitToOSFilesystems(path string, detect bool) (dot, wt billy.Filesystem,
301304
}
302305

303306
func dotGitFileToOSFilesystem(path string, fs billy.Filesystem) (bfs billy.Filesystem, err error) {
304-
f, err := fs.Open(".git")
307+
f, err := fs.Open(GitDirName)
305308
if err != nil {
306309
return nil, err
307310
}

worktree_status.go

+4
Original file line numberDiff line numberDiff line change
@@ -300,6 +300,10 @@ func (w *Worktree) doAddDirectory(idx *index.Index, s Status, directory string)
300300

301301
var a bool
302302
if file.IsDir() {
303+
if file.Name() == GitDirName {
304+
// ignore special git directory
305+
continue
306+
}
303307
a, err = w.doAddDirectory(idx, s, name)
304308
} else {
305309
a, _, err = w.doAddFile(idx, s, name)

worktree_test.go

+38
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,14 @@ package git
33
import (
44
"bytes"
55
"context"
6+
"errors"
67
"io/ioutil"
78
"os"
89
"path/filepath"
910
"regexp"
1011
"runtime"
1112
"testing"
13+
"time"
1214

1315
"gopkg.in/src-d/go-git.v4/config"
1416
"gopkg.in/src-d/go-git.v4/plumbing"
@@ -1833,3 +1835,39 @@ func (s *WorktreeSuite) TestGrep(c *C) {
18331835
}
18341836
}
18351837
}
1838+
1839+
func (s *WorktreeSuite) TestAddAndCommit(c *C) {
1840+
dir, err := ioutil.TempDir("", "plain-repo")
1841+
c.Assert(err, IsNil)
1842+
defer os.RemoveAll(dir)
1843+
1844+
repo, err := PlainInit(dir, false)
1845+
c.Assert(err, IsNil)
1846+
1847+
w, err := repo.Worktree()
1848+
c.Assert(err, IsNil)
1849+
1850+
_, err = w.Add(".")
1851+
c.Assert(err, IsNil)
1852+
1853+
w.Commit("Test Add And Commit", &CommitOptions{Author: &object.Signature{
1854+
Name: "foo",
1855+
1856+
When: time.Now(),
1857+
}})
1858+
1859+
iter, err := w.r.Log(&LogOptions{})
1860+
c.Assert(err, IsNil)
1861+
err = iter.ForEach(func(c *object.Commit) error {
1862+
files, err := c.Files()
1863+
if err != nil {
1864+
return err
1865+
}
1866+
1867+
err = files.ForEach(func(f *object.File) error {
1868+
return errors.New("Expected no files, got at least 1")
1869+
})
1870+
return err
1871+
})
1872+
c.Assert(err, IsNil)
1873+
}

0 commit comments

Comments
 (0)