This commit is contained in:
nulltoken 2015-03-16 20:26:47 +01:00
Родитель fc59d2e865
Коммит 930f63ce42
73 изменённых файлов: 53 добавлений и 169 удалений

Просмотреть файл

@ -1,4 +1,3 @@
using System;
using System.IO;
using System.Text;
using LibGit2Sharp.Tests.TestHelpers;

Просмотреть файл

@ -1,9 +1,9 @@
using System.IO;
using System;
using System.IO;
using System.Linq;
using LibGit2Sharp.Tests.TestHelpers;
using Xunit;
using Xunit.Extensions;
using System;
namespace LibGit2Sharp.Tests
{

Просмотреть файл

@ -471,12 +471,12 @@ namespace LibGit2Sharp.Tests
{
var path = SandboxAssumeUnchangedTestRepo();
using (var repo = new Repository(path))
{
{
var regularFile = repo.Index["hello.txt"];
Assert.False(regularFile.AssumeUnchanged);
var assumeUnchangedFile = repo.Index["world.txt"];
Assert.True(assumeUnchangedFile.AssumeUnchanged);
Assert.True(assumeUnchangedFile.AssumeUnchanged);
}
}

Просмотреть файл

@ -1,5 +1,4 @@
using System;
using System.Diagnostics;
using System.IO;
using System.Linq;
using LibGit2Sharp.Tests.TestHelpers;

Просмотреть файл

@ -1,6 +1,7 @@
using System;
using System.IO;
using System.Linq;
using LibGit2Sharp.Handlers;
using LibGit2Sharp.Tests.TestHelpers;
using Xunit;
@ -62,7 +63,7 @@ namespace LibGit2Sharp.Tests
public void CanPushABranchTrackingAnUpstreamBranch()
{
bool packBuilderCalled = false;
Handlers.PackBuilderProgressHandler packBuilderCb = (x, y, z) => { packBuilderCalled = true; return true; };
PackBuilderProgressHandler packBuilderCb = (x, y, z) => { packBuilderCalled = true; return true; };
AssertPush(repo => repo.Network.Push(repo.Head));
AssertPush(repo => repo.Network.Push(repo.Branches["master"]));

Просмотреть файл

@ -1,5 +1,4 @@
using System;
using System.Linq;
using System.Linq;
using LibGit2Sharp.Tests.TestHelpers;
using Xunit;
using Xunit.Extensions;

Просмотреть файл

@ -1,9 +1,9 @@
using System;
using System.IO;
using System.Linq;
using LibGit2Sharp.Tests.TestHelpers;
using Xunit;
using Xunit.Extensions;
using System;
namespace LibGit2Sharp.Tests
{

Просмотреть файл

@ -1,4 +1,4 @@
using System;
using System;
using System.IO;
using System.Reflection;
using System.Security;

Просмотреть файл

@ -1,7 +1,6 @@
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Net;
using System.Net.Security;
using LibGit2Sharp.Tests.TestHelpers;

Просмотреть файл

@ -1,4 +1,4 @@
using System;
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Globalization;

Просмотреть файл

@ -1,4 +1,10 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Xml;
using Xunit;
using Xunit.Extensions;
using Xunit.Sdk;
//**********************************************************************
//* This file is based on the DynamicSkipExample.cs in xUnit which is
//* provided under the following Ms-PL license:
@ -58,12 +64,6 @@
//* portion of the software in compiled or object code form, you may
//* only do so under a license that complies with this license.
//**********************************************************************
using System.Collections.Generic;
using System.Linq;
using System.Xml;
using Xunit;
using Xunit.Extensions;
using Xunit.Sdk;
namespace LibGit2Sharp.Tests.TestHelpers
{

Просмотреть файл

@ -1,6 +1,4 @@
using System;
namespace LibGit2Sharp
namespace LibGit2Sharp
{
/// <summary>
/// Strategy used for blaming.

Просмотреть файл

@ -1,5 +1,4 @@
using System;
using System.IO;
using System.IO;
using System.Text;
using LibGit2Sharp.Core;

Просмотреть файл

@ -1,7 +1,6 @@
using System;
using System.Globalization;
using LibGit2Sharp.Core;
using LibGit2Sharp.Handlers;
namespace LibGit2Sharp
{

Просмотреть файл

@ -1,5 +1,4 @@
using LibGit2Sharp.Core;
using System;
namespace LibGit2Sharp
{

Просмотреть файл

@ -1,6 +1,4 @@
using System;
namespace LibGit2Sharp
namespace LibGit2Sharp
{
/// <summary>
/// Tracking information for a <see cref="Branch"/>

Просмотреть файл

@ -1,9 +1,4 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace LibGit2Sharp
namespace LibGit2Sharp
{
/// <summary>
/// Enum specifying what content checkout should write to disk

Просмотреть файл

@ -1,5 +1,4 @@
using System;
using LibGit2Sharp.Handlers;
namespace LibGit2Sharp
{

Просмотреть файл

@ -1,7 +1,4 @@
using System;
using System.Collections.Generic;
namespace LibGit2Sharp
namespace LibGit2Sharp
{
/// <summary>
/// Class to report the result of a cherry picked.

Просмотреть файл

@ -1,5 +1,4 @@
using System;
using LibGit2Sharp.Core;
using LibGit2Sharp.Core;
using LibGit2Sharp.Handlers;
namespace LibGit2Sharp

Просмотреть файл

@ -1,7 +1,6 @@
using System;
using System.Collections;
using System.Collections.Generic;
using System.Globalization;
using System.Linq;
using LibGit2Sharp.Core;
using LibGit2Sharp.Core.Handles;

Просмотреть файл

@ -1,9 +1,4 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace LibGit2Sharp
namespace LibGit2Sharp
{
/// <summary>
/// Provides optional additional information to commit creation.

Просмотреть файл

@ -1,5 +1,3 @@
using System;
namespace LibGit2Sharp
{
/// <summary>

Просмотреть файл

@ -1,4 +1,5 @@
using System;
using System.Collections;
using System.Collections.Generic;
using System.Globalization;
using System.IO;
@ -299,7 +300,7 @@ namespace LibGit2Sharp
return BuildConfigEntries().GetEnumerator();
}
System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator()
IEnumerator IEnumerable.GetEnumerator()
{
return ((IEnumerable<ConfigurationEntry<string>>)this).GetEnumerator();
}

Просмотреть файл

@ -1,9 +1,8 @@
using System;
using System.Linq;
using System.Collections;
using System.Collections.Generic;
using System.Diagnostics;
using System.Globalization;
using System.Linq;
namespace LibGit2Sharp.Core
{

Просмотреть файл

@ -1,7 +1,6 @@
using System;
using System.Globalization;
using System.Runtime.InteropServices;
using System.Text;
namespace LibGit2Sharp.Core
{

Просмотреть файл

@ -1,7 +1,4 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace LibGit2Sharp.Core
{

Просмотреть файл

@ -1,5 +1,4 @@
using System;
using System.Runtime.InteropServices;
using System.Runtime.InteropServices;
namespace LibGit2Sharp.Core
{

Просмотреть файл

@ -1,5 +1,4 @@
using System;
using System.Runtime.InteropServices;
using System.Runtime.InteropServices;
namespace LibGit2Sharp.Core
{

Просмотреть файл

@ -1,8 +1,5 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Runtime.InteropServices;
using System.Text;
namespace LibGit2Sharp.Core
{

Просмотреть файл

@ -1,8 +1,5 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Runtime.InteropServices;
using System.Text;
namespace LibGit2Sharp.Core
{

Просмотреть файл

@ -1,7 +1,5 @@
using System;
using System.Collections.Generic;
using System.Runtime.InteropServices;
using System.Text;
namespace LibGit2Sharp.Core
{

Просмотреть файл

@ -1,5 +1,4 @@
using System;
using System.Collections.Generic;
using System.Runtime.InteropServices;
namespace LibGit2Sharp.Core

Просмотреть файл

@ -1,5 +1,3 @@
using System.Runtime.InteropServices;
namespace LibGit2Sharp.Core.Handles
{
internal class GitAnnotatedCommitHandle : SafeHandleBase

Просмотреть файл

@ -1,5 +1,3 @@
using System.Runtime.InteropServices;
namespace LibGit2Sharp.Core.Handles
{
internal class GitConfigEntryHandle : NotOwnedSafeHandleBase

Просмотреть файл

@ -1,5 +1,4 @@
using System;
using System.Runtime.InteropServices;
namespace LibGit2Sharp.Core.Handles
{

Просмотреть файл

@ -1,6 +1,4 @@
using System.Runtime.InteropServices;
namespace LibGit2Sharp.Core.Handles
namespace LibGit2Sharp.Core.Handles
{
internal class IndexEntrySafeHandle : NotOwnedSafeHandleBase
{

Просмотреть файл

@ -1,6 +1,4 @@
using System.Runtime.InteropServices;
namespace LibGit2Sharp.Core.Handles
namespace LibGit2Sharp.Core.Handles
{
internal class IndexNameEntrySafeHandle : NotOwnedSafeHandleBase
{

Просмотреть файл

@ -1,6 +1,4 @@
using System.Runtime.InteropServices;
namespace LibGit2Sharp.Core.Handles
namespace LibGit2Sharp.Core.Handles
{
internal class IndexReucEntrySafeHandle : NotOwnedSafeHandleBase
{

Просмотреть файл

@ -1,4 +1,5 @@
using System.Runtime.InteropServices;
using System;
using System.Runtime.InteropServices;
namespace LibGit2Sharp.Core.Handles
{
@ -9,7 +10,7 @@ namespace LibGit2Sharp.Core.Handles
return IsInvalid ? null : (GitOid?)MarshalAsGitOid(handle);
}
private static GitOid MarshalAsGitOid(System.IntPtr data)
private static GitOid MarshalAsGitOid(IntPtr data)
{
var gitOid = new GitOid { Id = new byte[GitOid.Size] };
Marshal.Copy(data, gitOid.Id, 0, GitOid.Size);

Просмотреть файл

@ -1,9 +1,4 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace LibGit2Sharp.Core.Handles
namespace LibGit2Sharp.Core.Handles
{
internal class StatusListSafeHandle : SafeHandleBase
{

Просмотреть файл

@ -1,5 +1,4 @@
using System;
using LibGit2Sharp.Core;
namespace LibGit2Sharp
{

Просмотреть файл

@ -5,7 +5,6 @@ using System.Linq;
using System.Text;
using LibGit2Sharp.Core;
using LibGit2Sharp.Core.Handles;
using Environment = System.Environment;
namespace LibGit2Sharp
{

Просмотреть файл

@ -1,7 +1,4 @@
using System;
using LibGit2Sharp.Handlers;
namespace LibGit2Sharp
namespace LibGit2Sharp
{
/// <summary>
/// Collection of parameters controlling Fetch behavior.

Просмотреть файл

@ -1,5 +1,4 @@
using LibGit2Sharp.Core;
using System;
namespace LibGit2Sharp
{

Просмотреть файл

@ -3,8 +3,6 @@ using System.Collections;
using System.Collections.Generic;
using System.Diagnostics;
using System.Globalization;
using System.IO;
using System.Linq;
using LibGit2Sharp.Core;
using LibGit2Sharp.Core.Handles;

Просмотреть файл

@ -1,7 +1,6 @@
using System;
using System.Collections;
using System.Collections.Generic;
using System.Globalization;
using LibGit2Sharp.Core;
using LibGit2Sharp.Core.Handles;

Просмотреть файл

@ -1,7 +1,6 @@
using System;
using System.Collections;
using System.Collections.Generic;
using System.Globalization;
using LibGit2Sharp.Core;
using LibGit2Sharp.Core.Handles;

Просмотреть файл

@ -1,5 +1,4 @@
using System;
using System.Globalization;
using System.Runtime.Serialization;
using LibGit2Sharp.Core;

Просмотреть файл

@ -1,9 +1,4 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace LibGit2Sharp
namespace LibGit2Sharp
{
/// <summary>
/// Available logging levels. When logging is enabled at a particular

Просмотреть файл

@ -1,6 +1,5 @@
using System;
using System.Runtime.Serialization;
using LibGit2Sharp.Core;
namespace LibGit2Sharp
{

Просмотреть файл

@ -1,6 +1,6 @@
using LibGit2Sharp.Core;
using System;
using LibGit2Sharp.Core;
using LibGit2Sharp.Handlers;
using System;
namespace LibGit2Sharp
{

Просмотреть файл

@ -1,9 +1,4 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace LibGit2Sharp
namespace LibGit2Sharp
{
/// <summary>
/// Class to report the result of a merge.

Просмотреть файл

@ -1,8 +1,6 @@
using System.Collections.Generic;
using System.Globalization;
using System.Linq;
using LibGit2Sharp.Core;
using LibGit2Sharp.Handlers;
namespace LibGit2Sharp
{

Просмотреть файл

@ -1,9 +1,4 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace LibGit2Sharp
namespace LibGit2Sharp
{
/// <summary>
/// Parameters controlling Pull behavior.

Просмотреть файл

@ -1,5 +1,4 @@
using System;
using System.Diagnostics;
using System.Diagnostics;
using System.Globalization;
using LibGit2Sharp.Core;
using LibGit2Sharp.Core.Handles;

Просмотреть файл

@ -1,8 +1,8 @@
using System.Collections;
using System.Collections.Generic;
using System.Linq;
using System.Diagnostics;
using System.Globalization;
using System.Linq;
using LibGit2Sharp.Core;
using LibGit2Sharp.Core.Handles;

Просмотреть файл

@ -1,9 +1,4 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace LibGit2Sharp
namespace LibGit2Sharp
{
/// <summary>
/// Indicates whether a refspec is a push refspec or a fetch refspec

Просмотреть файл

@ -1,5 +1,4 @@
using System;
using System.Collections;
using System.Collections;
using System.Collections.Generic;
using System.Diagnostics;
using System.Globalization;

Просмотреть файл

@ -1,8 +1,8 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Diagnostics;
using System.Globalization;
using System.Linq;
using LibGit2Sharp.Core;
using LibGit2Sharp.Core.Handles;

Просмотреть файл

@ -1,4 +1,5 @@
using System;
using System.Collections;
using System.Collections.Generic;
using LibGit2Sharp.Core;
using LibGit2Sharp.Core.Handles;
@ -169,7 +170,7 @@ namespace LibGit2Sharp
return list.Value.GetEnumerator();
}
System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator()
IEnumerator IEnumerable.GetEnumerator()
{
return list.Value.GetEnumerator();
}

Просмотреть файл

@ -1,6 +1,5 @@
using System;
using System.Runtime.Serialization;
using LibGit2Sharp.Core;
namespace LibGit2Sharp
{

Просмотреть файл

@ -4,11 +4,9 @@ using System.Diagnostics;
using System.Globalization;
using System.IO;
using System.Linq;
using System.Reflection;
using System.Text.RegularExpressions;
using LibGit2Sharp.Core;
using LibGit2Sharp.Core.Handles;
using LibGit2Sharp.Handlers;
namespace LibGit2Sharp
{

Просмотреть файл

@ -1,5 +1,4 @@
using System;
using LibGit2Sharp.Core;
using LibGit2Sharp.Core;
namespace LibGit2Sharp
{

Просмотреть файл

@ -1,9 +1,4 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace LibGit2Sharp
namespace LibGit2Sharp
{
/// <summary>
/// Class to report the result of a revert.

Просмотреть файл

@ -1,6 +1,5 @@
using System;
using System.Globalization;
using System.Runtime.InteropServices;
using LibGit2Sharp.Core;
using LibGit2Sharp.Core.Handles;

Просмотреть файл

@ -1,5 +1,4 @@
using System;
using LibGit2Sharp.Core;
namespace LibGit2Sharp
{

Просмотреть файл

@ -1,6 +1,4 @@
using System;
using System.Collections.Generic;
using System.IO;
using System.Runtime.InteropServices;
using LibGit2Sharp.Core;

Просмотреть файл

@ -1,5 +1,4 @@
using System;
using System.Linq;
using System.Runtime.InteropServices;
using LibGit2Sharp.Core;

Просмотреть файл

@ -1,6 +1,4 @@
using System;
namespace LibGit2Sharp
namespace LibGit2Sharp
{
/// <summary>
/// Options to define file staging behavior.

Просмотреть файл

@ -1,9 +1,4 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace LibGit2Sharp
namespace LibGit2Sharp
{
/// <summary>
/// Flags controlling what files are reported by status.

Просмотреть файл

@ -1,6 +1,5 @@
using System;
using System.Runtime.Serialization;
using LibGit2Sharp.Core;
namespace LibGit2Sharp
{

Просмотреть файл

@ -1,5 +1,4 @@
using System;
using System.Globalization;
using System.Globalization;
using System.IO;
using System.Linq;
using System.Reflection;