| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
|
|
|
| |
incorrect repository
|
|
|
|
| |
fact, it didn't work, and ... something else keeps them open. Its odd, its weird, its windows, and I give up on it for now
|
| |
|
|
|
|
| |
was returned in the submodules super repository, not in the submodule's module
|
|
|
|
| |
run often enough, which is because they intentionally don't have a package initialization file
|
|
|
|
|
|
| |
submodule names. Also, a major bug was fixed that cased submodules to always being updated recursively when using the RootModule.update method
submodule: previously, it would update the repository configuration during add(), but in fact it must be done during update() when the module is cloned, which is how the git-submodule implementation works
|
| |
|
| |
|
|
|
|
| |
the restricted tests are concerned
|
|
|
|
| |
submodule removals, as well as url changes
|
|
|
|
| |
moved later if the configuration changed, and actually it also verifies that the url-change is handled correctly (as we changed the url from the default to the local path)
|
| |
|
|
|
|
|
|
| |
being a special case of the commit method; includes tests
util: Fixed iterable lists, which broke due to an incorrectly implemented __contains__ method
|
|
|
|
| |
the ORIG_HEAD reference as well
|
|
|
|
| |
able to handle submodule removals, additions, path changes and branch changes. All this still needs to be tested though
|
|
|
|
|
|
| |
offering a create_* method for most important entities.
Moved implementation of smart update method to the RootModule implementation, where it may do special things without requiring an interface for everything
|
|
|
|
|
|
| |
property alrdeady
Improved submodule move tests
|
|
|
|
| |
to-be-improved test
|
|
|
|
| |
coverage for it
|
| |
|
|
|
|
| |
fixed a few issues on the way
|
|
|
|
| |
next
|
| |
|
|
|
|
| |
to update submodules such as svn-externals
|
| |
|
|
|
|
|
|
|
| |
heads, including test.
Config: SectionConstraint was updated with additional callable methods, the complete ConfigParser interface should be covered now
Remote: refs methods is much more efficient now as it will set the search path to the directory containing the remote refs - previously it used the remotes/ base directory and pruned the search result
|
|
|
|
| |
though to allow easy configuration of branch-specific settings
|
|
|
|
| |
svn-external like behaviour. Implemented first version of update, which works for now, but probably needs to see more features
|
|
|
|
| |
general may be contradicting if a tag is given there, as well as a commit sha of the submodule. Hence it should really be only a branch
|
|
|
|
| |
was mainly copy-paste from with_rw_repo, what a shame
|
|
|
|
| |
provided for Remotes, including test
|
|
|
|
|
|
| |
local cache - previously a procedural approach was used, which was less code, but slower too. Especially in case of CommitObjects unrolling the loop manually makes a difference.
Submodule: Implemented query methods and did a bit of testing. More is to come, but the test works for now. As special addition, the submodule implementation uses the section name as submodule ID even though it seems to be just the path. This allows to make renames easier
|
|
|
|
| |
corresponding locks. Submodule class now operates on parent_commits, the configuration is either streamed from the repository or written directly into a blob ( or file ) dependending on whether we have a working tree checkout or not which matches our parent_commit
|
|
|
|
| |
usable. It showed that the ConfigParser needs some work. If the root is set, it also needs to refer to the root_commit instead of to the root-tree, as it will have to decide whether it works on the working tree's version of the .gitmodules file or the one in the repository
|
|
|
|
| |
dependent on the setup of the surrounding repository, hence the amount of ref-types found is actually variable, as long as they get more
|
|
|
|
| |
has better testing for the use of paths during reset. The IndexFile now implements this on its own, which also allows for something equivalent to git-reset --hard -- <paths>, which is not possible in the git command for some probably very good reason
|
|
|
|
|
|
| |
instead of the existing and valid. The rest of the ConfigParser handling is correct, as it reads all configuration files available to git
see http://github.com/Byron/GitPython/issues#issue/1
|
|
|
|
| |
head.reset: will now handle resets with paths much better, especially in the --mixed case, see http://github.com/Byron/GitPython/issues#issue/2
|
|
|
|
| |
Fixed test which used the --force flag on move, but there is only a short version (left) it appears
|
|
|
|
| |
into the byte stream, as well as decoded from it
|
|
|
|
|
|
| |
passed in
test_odb: added more information to the message output
|
|
|
|
|
|
| |
http://byronimo.lighthouseapp.com/projects/51787/tickets/44-remoteref-fails-when-there-is-character-in-the-name using supplied patch ( which was manually applied ).
Fixed slightly broken test for remote handling
|
|
|
|
| |
using a / in a hardcoded fashion, leading to absolute paths where the caller expected relative ones
|
|
|
|
| |
The first one is faster, although I would have expected the latter one to be faster
|
| |
|
|
|
|
| |
python 2.4, as the pure python implementation cannot work without memory maps
|
|
|
|
|
|
| |
as well as the previous instance method clone to keep it compatible
Fixed small bug in test code
|
|
|
|
| |
partial_to_complete_sha_hex is working as expected with different input ( it wasn't, of course ;) )
|
|
|
|
| |
rev_parse could be adjusted not to return Objects anymore, providing better performance for those who just want a sha only. On the other hand, the method is high-level and should be convenient to use as well, its a starting point for more usually, hence its unlikely to call it in tight loops
|