Skip to content

Some small changes, most important one being that cloning from a http repo should work now. #25

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 11 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,4 @@ Reports
test-results
dist
build
SharedAssemblyInfo.cs
VersionAssemblyInfo.cs
VersionAssemblyInfo.cs
2 changes: 1 addition & 1 deletion Git/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -340,7 +340,7 @@ static public void Exit(int exit_code)
Git.DefaultRepository.Close();

#if DEBUG
Console.WriteLine("\n\nrunning in DEBUG mode, press any key to exit.");
Console.WriteLine("\n\nrunning in DEBUG mode, press [ENTER] to exit.");
Console.In.ReadLine();
#endif
Environment.Exit(exit_code);
Expand Down
3 changes: 3 additions & 0 deletions GitSharp.Core/GitSharp.Core.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,9 @@
</Reference>
</ItemGroup>
<ItemGroup>
<Compile Include="..\SharedAssemblyInfo.cs">
<Link>Properties\SharedAssemblyInfo.cs</Link>
</Compile>
<Compile Include="AbbreviatedObjectId.cs" />
<Compile Include="AlternateRepositoryDatabase.cs" />
<Compile Include="BlobBasedConfig.cs" />
Expand Down
Loading