Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/libgit2sharp.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2015-01-25Introduce submodule Update and InitJameson Miller
2015-01-23Add new AssumeUnchanged test repositorynulltoken
Created through the following $ git init assume_unchanged_wd && cd assume_unchanged_wd $ echo "hello" > hello.txt $ echo "world" > world.txt $ git add . $ git commit -m "Initial commit" $ echo "Hello" > hello.txt $ echo "World" > world.txt $ git status On branch master Changes not staged for commit: (use "git add <file>..." to update what will be committed) (use "git checkout -- <file>..." to discard changes in working directory) modified: hello.txt modified: world.txt no changes added to commit (use "git add" and/or "git commit -a") $ git update-index --assume-unchanged world.txt $ git status On branch master Changes not staged for commit: (use "git add <file>..." to update what will be committed) (use "git checkout -- <file>..." to discard changes in working directory) modified: hello.txt no changes added to commit (use "git add" and/or "git commit -a")
2014-07-01Handle tags that do not have a tagger.Jameson Miller
Not all tags have a tagger. For example, the v2.6.11 tag on the linux repository does not have a tagger. For these cases, return null for the Tagger property on a tag annotation.
2014-06-14Introduce Repository.Index.Conflicts.NamesEdward Thomson
2014-05-30Fix indices of test repos so that they're not dirtynulltoken
2014-05-14Continue implementing revertJameson Miller
2014-05-03Update Checkout and Merge optionsJameson Miller
Checkout methods now use CheckoutOptions Merge now takes several options: - Option to specify what is checked out for file conflicts. - Report CheckoutProgress and CheckoutNotify - Option to specify MergeFileFavor Updates for code review feedback
2014-04-09Introduce new merge functionality, including Pull, merge options, andJameson Miller
merging branches. This includes a refactoring of the merge logic to support the new scenarios. New functionality includes: - Deprecate Network.Fetchheads, Repository.MergeHeads as these should be internal only. - Introduce ability to pull the configured upstream branch for the current branch - Introduce ability to merge a branch into the current branch. - Introduce options to control merge behavior. The current exposed options include whether to commit the merge commit and the allowed merge types.
2014-04-09Introduce EmptyCommitExceptionEdward Thomson
By default, we now throw an exception when trying to commit an "empty commit" - that is, one that does not change any items. This check only applies when doing a normal commit, or an amend of a normal commit; it does not apply when performing a merge or an amend of a merge commit. This check can optionally be overridden.
2013-12-13Add tar archiving testsyorah
2013-08-22Does not throw when parsing a Remote with no urlnulltoken
Fix #484
2013-06-01Add shallow test repoBen Straub
2013-05-25Add CompareOptionsKeith Dahlby
* ContextLines * InterhunkLines Closes #423
2013-04-11Add submodule test repoKeith Dahlby
2013-03-26Remove sample hooksKeith Dahlby
2013-02-14Introduce Repository.ConflictsEdward Thomson
2013-02-01Enhance Configuration test coveragenulltoken
Fix git-tfs/git-tfs#300
2013-01-24Update test repository with libgit2 logonulltoken
2013-01-23Ensure Checkout() doesn't mess with binary filesnulltoken
Fix #302
2013-01-16Add test repository with merge conflictsMetalrom
2012-05-22Add notes related test resources in Bare repositoryyorah
2012-04-28Add some Diff related test resourcesnulltoken
2012-02-21Add support for local tracking branches (branch..remote = ".")Keith Dahlby
2011-12-20Upgrade libgit2 binaries to be00b00nulltoken
2011-11-08Fix line endings of packed-refs test filesnulltoken
Entries are supposed to be separated by Unix line endings, not Windows ones
2011-10-31Add a test file "1.txt" beside the "1" folder to put under the light an ↵nulltoken
ordering issue when determining status
2011-10-10Add commits to remote/origin in testrepo_wd to test Branch.BehindByKeith Dahlby
2011-10-10Add tracking branch details. Closes #75Keith Dahlby
2011-09-29Can get basic settings from config fileTim Clem
2011-09-29Add determination of repository statusnulltoken
- Doesn't handle line endings conversion - Doesn't honor .gitignore - Test repositories have been moved under LibGit2Sharp.Tests - .gitattributes file has been added to prevent unexpected line endings conversion of the test repositories files Should fix issue #49.