- 22 May, 2014 3 commits
-
-
Make core.safecrlf not generate an error on LF-ending platforms
Vicent Marti committed -
Include windows.h on win32 for Sleep
Vicent Marti committed -
Edward Thomson committed
-
- 21 May, 2014 2 commits
-
-
smart: send a flush when we disconnect
Vicent Marti committed -
Minor fix for cmn/clone-into-mirror.
Carlos Martín Nieto committed
-
- 20 May, 2014 3 commits
-
-
A recently added check might skip initialization of old_fetchhead and go directly to cleanup. So, destruct in the opposite order of construction.
Albert Meltzer committed -
Carlos Martín Nieto committed
-
The git server wants to hear a flush from us when we disconnect, particularly when we want to perform a fetch but are up to date.
Carlos Martín Nieto committed
-
- 19 May, 2014 10 commits
-
-
Russell Belfer committed
-
If you enabled core.safecrlf on an LF-ending platform, we would error even for files with all LFs. We should only be warning on irreversible mappings, I think.
Russell Belfer committed -
Restore attributions for fnmatch
Vicent Marti committed -
Martin Woodward committed
-
Allow mirror-clone via `git_clone_into()`
Vicent Marti committed -
We set up the current branch after we fetch from the remote. This means that the user's refspec may have already created this reference. It is therefore not an error if we cannot create the branch because it already exists. This allows for the user to replicate git-clone's --mirror option.
Carlos Martín Nieto committed -
Instead of changing the user-provided remote, duplicate it so we can add the extra refspec without having to worry about unsetting it before returning.
Carlos Martín Nieto committed -
Show a failure to perform a mirror-clone from a repository, both local and remote.
Carlos Martín Nieto committed -
message: don't assume the comment char
Vicent Marti committed -
WIP: Windows fixes
Vicent Marti committed
-
- 18 May, 2014 3 commits
-
-
Fix warning on uninitialized variable.
Philip Kelley committed -
Albert Meltzer committed
-
The comment char is configurable and we need to provide a way for the user to specify which comment char they chose for their message.
Carlos Martín Nieto committed
-
- 17 May, 2014 5 commits
-
-
Philip Kelley committed
-
Philip Kelley committed
-
Philip Kelley committed
-
Philip Kelley committed
-
Test and fix Git diff binary detection compatibility
Vicent Marti committed
-
- 16 May, 2014 8 commits
-
-
Windows has its own ftruncate() called _chsize_s(). p_mkstemp() is changed to use p_open() so we can make sure we open for writing; the addition of exclusive create is a good thing to do regardless, as we want a temporary path for ourselves. Lastly, MSVC doesn't quite know how to add two numbers if one of them is a void pointer, so let's alias it to unsigned char.C
Carlos Martín Nieto committed -
Some OSs cannot keep their ideas about file content straight when mixing standard IO with file mapping. As we use mmap for reading from the packfile, let's make writing to the pack file use mmap.
Carlos Martín Nieto committed -
A variety of data patterns for diffs verified to match the behavior of binary detection with Git on the command line.
Russell Belfer committed -
Russell Belfer committed
-
Win32: Supply _O_NOINHERIT when calling _wopen
Russell Belfer committed -
Philip Kelley committed
-
Remote deletion
Vicent Marti committed -
When we delete a remote, we also need to go through its fetch refspecs and remove the references they create locally.
Carlos Martín Nieto committed
-
- 15 May, 2014 5 commits
-
-
pack: init the cache on packfile alloc
Russell Belfer committed -
Better global search path sandboxing in tests
Vicent Marti committed -
When running multithreaded, it is not enough to check for the offmap allocation. Move the call to cache_init() to packfile allocation so we can be sure it is always allocated free of races. This fixes #2355.
Carlos Martín Nieto committed -
There are a number of tests that modify the global or system search paths during the tests. This adds a helper function to make it easier to restore those paths and makes sure that they are getting restored in a manner that preserves test isolation.
Russell Belfer committed -
Philip Kelley committed
-
- 14 May, 2014 1 commit
-
-
Initialize local variable
Vicent Marti committed
-