Skip to content

Commit 0dcaefc

Browse files
authored
Merge pull request #1607 from itofinity/mminns/issue-1471-worktrees
Add support for worktrees
2 parents 111520c + 87517d9 commit 0dcaefc

File tree

136 files changed

+1149
-3
lines changed

Some content is hidden

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

136 files changed

+1149
-3
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,3 +38,5 @@ _ReSharper*/
3838
*.DotSettings
3939

4040
_NCrunch_LibGit2Sharp/
41+
packages/
42+
worktree.playlist
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
one
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
hi
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
hey there
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
hi
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Add "1.txt" file beside "1" folder
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
ref: refs/heads/master
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
[core]
2+
repositoryformatversion = 0
3+
filemode = false
4+
bare = false
5+
logallrefupdates = true
6+
symlinks = false
7+
ignorecase = true
8+
hideDotFiles = dotGitOnly
9+
[remote "origin"]
10+
fetch = +refs/heads/*:refs/remotes/origin/*
11+
url = c:/GitHub/libgit2sharp/Resources/testrepo.git
12+
[remote "no_url"]
13+
url =
14+
fetch = +refs/heads/*:refs/remotes/no_url/*
15+
[branch "master"]
16+
remote = origin
17+
merge = refs/heads/master
18+
[branch "track-local"]
19+
remote = .
20+
merge = refs/heads/master
21+
[unittests]
22+
longsetting = 15234
23+
intsetting = 2
Binary file not shown.
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# git ls-files --others --exclude-from=.git/info/exclude
2+
# Lines that start with '#' are comments.
3+
# For a project mostly in C, the following would be a good set of
4+
# exclude patterns (uncomment them if you want to use them):
5+
# *.[oa]
6+
# *~

0 commit comments

Comments
 (0)