Implements an Object which may be Blobs, Trees, Commits and Tags
Returns: | File Object compatible stream to the uncompressed raw data of the object |
---|---|
Note: | returned streams must be read in order |
Returns: | 40 byte hex version of our 20 byte binary sha |
---|
Returns: | New Object instance of a type appropriate to the object type behind id. The id of the newly created object will be a binsha even though the input id may have been a Reference or Rev-Spec |
---|---|
Parameter: | id – reference, rev-spec, or hexsha |
Note: | This cannot be a __new__ method as it would always call __init__ with the input id which is not necessarily a binsha. |
Returns: | new object instance of a type appropriate to represent the given binary sha1 |
---|---|
Parameter: | sha1 – 20 byte binary sha1 |
Base for all objects that can be part of the index file , namely Tree, Blob and SubModule objects
Returns: | Absolute path to this index object in the file system ( as opposed to the .path field which is a path relative to the git repository ). The returned path will be native to the system and contains ‘’ on windows. |
---|
Returns: | Name portion of the path, effectively being the basename |
---|
Wraps a git Commit object.
This class will act lazily on some of its attributes and will query the value on demand only if it involves calling the git binary.
Count the number of commits reachable from this commit
Parameters: |
|
---|---|
Returns: | int defining the number of reachable commits |
Commit the given tree, creating a commit object.
Parameters: |
|
---|---|
Returns: | Commit object representing the new commit |
Note: | Additional information about the committer and Author are taken from the environment or from the git configuration, see git-commit-tree for more information |
Find all commits matching the given criteria.
Parameters: |
|
---|---|
Returns: | iterator yielding Commit items |
Iterate _all_ parents of this commit.
Parameters: |
|
---|---|
Returns: | Iterator yielding Commit objects which are parents of self |
Returns: | String describing the commits hex sha based on the closest Reference. Mostly useful for UI purposes |
---|
Create a git stat from changes between this commit and its first parent or from all changes done if this is the very first commit.
Returns: | git.Stats |
---|
Returns: | First line of the commit message |
---|
Module containing all object based types.
A utility class providing methods to alter the underlying cache in a list-like fashion.
Once all adjustments are complete, the _cache, which really is a refernce to the cache of a tree, will be sorted. Assuring it will be in a serializable state
Add the given item to the tree. If an item with the given name already exists, nothing will be done, but a ValueError will be raised if the sha and mode of the existing item do not match the one you add, unless force is True
Parameters: |
|
---|---|
Returns: | self |
Tree objects represent an ordered list of Blobs and other Trees.
Tree as a list:
Access a specific blob using the
tree['filename'] notation.
You may as well access by index
blob = tree[0]
Returns: | list(Blob, ...) list of blobs directly below this tree |
---|
Returns: | An object allowing to modify the internal cache. This can be used to change the tree’s contents. When done, make sure you call set_done on the tree modifier, or serialization behaviour will be incorrect. See the TreeModifier for more information on how to alter the cache |
---|
Returns: | list(Tree, ...) list of trees directly below this tree |
---|
Module with functions which are supposed to be as fast as possible
Returns: | list with entries according to the given binary tree-shas. The result is encoded in a list of n tuple|None per blob/commit, (n == len(tree_shas)), where * [0] == 20 byte sha * [1] == mode as int * [2] == path relative to working tree root The entry tuple is None if the respective blob/commit did not exist in the given tree. |
---|---|
Parameters: |
|
Note: | The ordering of the returned items will be partially lost |
Returns: | list of entries of the tree pointed to by the binary tree_sha. An entry has the following format: * [0] 20 byte sha * [1] mode as int * [2] path relative to the repository |
---|---|
Parameter: | path_prefix – prefix to prepend to the front of all returned paths |
Module for general utility functions
Returns: | type suitable to handle the given object type name. Use the type to create new instances. |
---|---|
Parameter: | object_type_name – Member of TYPES |
Raises ValueError: | |
In case object_type_name is unknown |
Returns: | string identifying the currently active system user as name@node |
---|---|
Note: | user can be set with the ‘USER’ environment variable, usually set on windows |
Parse the given date as one of the following
Git internal format: timestamp offset
RFC 2822: Thu, 07 Apr 2005 22:13:13 +0200.
- ISO 8601 2005-04-07T22:13:13
The T can be a space as well
Returns: | Tuple(int(timestamp), int(offset)), both in seconds since epoch |
---|---|
Raises ValueError: | |
If the format could not be understood | |
Note: | Date can also be YYYY.MM.DD, MM/DD/YYYY and DD.MM.YYYY |
Parse out the actor (author or committer) info from a line like:
author Tom Preston-Werner <tom@mojombo.com> 1191999972 -0700
Returns: | [Actor, int_seconds_since_epoch, int_timezone_offset] |
---|
Class wireing all calls to the contained Process instance.
Use this type to hide the underlying process to provide access only to a specified stream. The process is usually wrapped into an AutoInterrupt class to kill it if the instance goes out of scope.
Simple interface to perforam depth-first or breadth-first traversals into one direction. Subclasses only need to implement one function. Instances of the Subclass must be hashable
Returns: | iterator yieling of items found when traversing self |
---|---|
Parameters: |
|
Raises ValueError: | |
---|---|
if offset is incorrect | |
Returns: | offset |
Module containing Index implementation, allowing to perform all kinds of index manipulations such as querying and merging.
Implements an Index that can be manipulated using a native implementation in order to save git command function calls wherever possible.
It provides custom merging facilities allowing to merge without actually changing your index or your working tree. This way you can perform own test-merges based on the index only without having to deal with the working copy. This is useful in case of partial working trees.
Entries
The index contains an entries dict whose keys are tuples of type IndexEntry to facilitate access.
You may read the entries dict or manipulate it using IndexEntry instance, i.e.:
index.entries[index.entry_key(index_entry_instance)] = index_entry_instance
Make sure you use index.write() once you are done manipulating the index directly before operating on it using the git command
Commit the current default index file, creating a commit object.
For more information on the arguments, see tree.commit. :note:
If you have manually altered the .entries member of this instance, don’t forget to write() your changes to disk beforehand.
Returns: | Commit object representing the new commit |
---|
Merge the given treeish revisions into a new index which is returned. The original index will remain unaltered
Parameters: |
|
---|---|
Returns: | New IndexFile instance. It will point to a temporary index location which does not exist anymore. If you intend to write such a merged Index, supply an alternate file_path to its ‘write’ method. |
Note: | In the three-way merge case, –aggressive will be specified to automatically resolve more cases in a commonly correct manner. Specify trivial=True as kwarg to override that. As the underlying git-read-tree command takes into account the current index, it will be temporarily moved out of the way to assure there are no unsuspected interferences. |
Returns: | Iterator yielding tuples of Blob objects and stages, tuple(stage, Blob) |
---|---|
Parameter: | predicate – Function(t) returning True if tuple(stage, Blob) should be yielded by the iterator. A default filter, the BlobFilter, allows you to yield blobs only if they match a given list of paths. |
Merge the given treeish revisions into a new index which is returned. This method behaves like git-read-tree –aggressive when doing the merge.
Parameters: |
|
---|---|
Returns: | New IndexFile instance. Its path will be undefined. If you intend to write such a merged Index, supply an alternate file_path to its ‘write’ method. |
Returns: | Path to the index file we are representing |
---|
Resolve the blobs given in blob iterator. This will effectively remove the index entries of the respective path at all non-null stages and add the given blob as new stage null blob.
For each path there may only be one blob, otherwise a ValueError will be raised claiming the path is already at stage 0.
Raises ValueError: | |
---|---|
if one of the blobs already existed at stage 0 | |
Returns: | self |
Note: | You will have to write the index manually once you are done, i.e. index.resolve_blobs(blobs).write() |
Returns: | Iterator yielding dict(path : list( tuple( stage, Blob, ...))), being a dictionary associating a path in the index with a list containing sorted stage/blob pairs |
---|---|
Note: | Blobs that have been removed in one side simply do not exist in the given stage. I.e. a file removed on the ‘other’ branch whose entries are at stage 3 will not have a stage 3 entry. |
Reread the contents of our index file, discarding all cached information we might have.
Note: | This is a possibly dangerious operations as it will discard your changes to index.entries |
---|---|
Returns: | self |
Write the current state to our file path or to the given one
Parameters: |
|
---|---|
Returns: | self |
Writes this index to a corresponding Tree object into the repository’s object database and return it.
Returns: | Tree object representing this index |
---|---|
Note: | The tree will be written even if one or more objects the tree refers to does not yet exist in the object database. This could happen if you added Entries to the index directly. |
Raises ValueError: | |
if there are no entries in the cache | |
Raises UnmergedEntriesError: | |
Thrown if a file could not be checked out from the index as it contained changes.
The .failed_files attribute contains a list of relative paths that failed to be checked out as they contained changes that did not exist in the index.
The .failed_reasons attribute contains a string informing about the actual cause of the issue.
The .valid_files attribute contains a list of relative paths to files that were checked out successfully and hence match the version stored in the index
Contains standalone functions to accompany the index implementation and make it more versatile
Write the cache represented by entries to a stream
Parameters: |
|
---|
Read a cache file from the given stream :return: tuple(version, entries_dict, extension_data, content_sha)
version is the integer version number
- entries dict is a dictionary which maps IndexEntry instances to a path
at a stage
extension_data is ‘’ or 4 bytes of type + 4 bytes of size + size bytes
content_sha is a 20 byte sha on all cache file contents
Create a tree from the given sorted list of entries and put the respective trees into the given object database
Parameters: |
|
---|---|
Returns: | tuple(binsha, list(tree_entry, ...)) a tuple of a sha and a list of tree entries being a tuple of hexsha, mode, name |
Returns: | Key suitable to be used for the index.entries dictionary |
---|---|
Parameter: | entry – One instance of type BaseIndexEntry or the path and the stage |
Module with additional types used by the index
Predicate to be used by iter_blobs allowing to filter only return blobs which match the given list of directories or files.
The given paths are given relative to the repository.
Small Brother of an index entry which can be created to describe changes done to the index in which case plenty of additional information is not requried.
As the first 4 data members match exactly to the IndexEntry type, methods expecting a BaseIndexEntry can also handle full IndexEntries even if they use numeric indices for performance reasons.
Returns: | flags stored with this entry |
---|
Returns: | Fully equipped BaseIndexEntry at the given stage |
---|
Returns: | our path relative to the repository working tree root |
---|
Stage of the entry, either:
- 0 = default stage
- 1 = stage before a merge or common ancestor entry in case of a 3 way merge
- 2 = stage of entries from the ‘left’ side of the merge
- 3 = stage of entries from the right side of the merge
Note: | For more information, see http://www.kernel.org/pub/software/scm/git/docs/git-read-tree.html |
---|
Returns: | Blob using the information of this index entry |
---|
Allows convenient access to IndexEntry data without completely unpacking it.
Attributes usully accessed often are cached in the tuple whereas others are unpacked on demand.
See the properties for a mapping between names and tuple indices.
Returns: | Tuple(int_time_seconds_since_epoch, int_nano_seconds) of the file’s creation time |
---|
Returns: | Minimal entry as created from the given BaseIndexEntry instance. Missing values will be set to null-like values |
---|---|
Parameter: | base – Instance of type BaseIndexEntry |
Returns: | Minimal entry resembling the given blob object |
---|
Returns: | Uncompressed size of the blob |
---|
Module containing index utilities
Utility class moving a file to a temporary location within the same directory and moving it back on to where on object deletion.
Decorator for functions that alter the index using the git command. This would invalidate our possibly existing entries dictionary which is why it must be deleted to allow it to be lazily reread later.
Note: | This decorator will not be required once all functions are implemented natively which in fact is possible, but probably not feasible performance wise. |
---|
The Git class manages communication with the Git binary.
It provides a convenient interface to calling the Git binary, such as in:
g = Git( git_dir )
g.init() # calls 'git init' program
rval = g.ls_files() # calls 'git ls-files' program
Kill/Interrupt the stored process instance once this instance goes out of scope. It is used to prevent processes piling up in case iterators stop reading. Besides all attributes are wired through to the contained process object.
The wait method was overridden to perform automatic status code checking and possibly raise.
Wait for the process and return its status code.
Raises GitCommandError: | |
---|---|
if the return status is not 0 |
Object representing a sized read-only stream returning the contents of an object. It behaves like a stream, but counts the data read and simulates an empty stream once our sized content region is empty. If not all data is read to the end of the objects’s lifetime, we read the rest to assure the underlying stream continues to work
Clear all kinds of internal caches to release resources.
Currently persistent commands will be interrupted.
Returns: | self |
---|
Handles executing the command on the shell and consumes and returns the returned information (stdout)
Parameters: |
|
---|---|
Returns: |
if ouput_stream is True, the stdout value will be your output stream: * output_stream if extended_output = False * tuple(int(status), output_stream, str(stderr)) if extended_output = True |
Raises GitCommandError: | |
Note: | If you add additional keyword arguments to the signature of this method, you must update the execute_kwargs tuple housed in this module. |
Use this method to quickly examine the type and size of the object behind the given ref.
Note: | The method will only suffer from the costs of command invocation once and reuses the command in subsequent calls. |
---|---|
Returns: | (hexsha, type_string, size_as_int) |
As get_object_header, but returns the data as a stream :return: (hexsha, type_string, size_as_int, stream) :note: This method is not threadsafe, you need one independent Command instance
per thread to be safe !
Returns: | Git directory we are working on |
---|
Module containing module parser implementation able to properly read and write configuration files
Common interface for all object that can be diffed against another object of compatible type.
Note: | Subclasses require a repo member as it is the case for Object instances, for practical reasons we do not derive from Object. |
---|
Creates diffs between two items being trees, trees and index or an index and the working tree.
Parameters: |
|
---|---|
Returns: | git.DiffIndex |
Note: | Rename detection will only work if create_patch is True. On a bare repository, ‘other’ needs to be provided as Index or as as Tree/Commit, or a git command error will occour |
Implements an Index for diffs, allowing a list of Diffs to be queried by the diff properties.
The class improves the diff handling convenience
Returns: | iterator yieling Diff instances that match the given change_type |
---|---|
Parameter: | change_type – Member of DiffIndex.change_type, namely:
|
A Diff contains diff information between two Trees.
It contains two sides a and b of the diff, members are prefixed with “a” and “b” respectively to inidcate that.
Diffs keep information about the changed blob objects, the file mode, renames, deletions and new files.
There are a few cases where None has to be expected as member variable value:
New File:
a_mode is None
a_blob is None
Deleted File:
b_mode is None
b_blob is None
Working Tree Blobs
When comparing to working trees, the working tree blob will have a null hexsha as a corresponding object does not yet exist. The mode will be null as well. But the path will be available though. If it is listed in a diff the working tree version of the file must be different to the version in the index or tree, and hence has been modified.
Returns: | True if the blob of our diff has been renamed |
---|
Module containing all exceptions thrown througout the git package,
Module containing all ref based objects
Represents a special case of a reference such that this reference is symbolic. It does not point to a specific commit, but to another Head, which itself specifies a commit.
A typical example for a symbolic reference is HEAD.
Create a new symbolic reference, hence a reference pointing to another reference.
Parameters: |
|
---|---|
Returns: | Newly created symbolic Reference |
Raises OSError: | If a (Symbolic)Reference with the same name but different contents already exists. |
Note: | This does not alter the current HEAD, index or Working Tree |
Delete the reference at the given path
Parameters: |
|
---|
Returns: | hexsha stored in the reference at the given ref_path, recursively dereferencing all intermediate references as required |
---|---|
Parameter: | repo – the repository containing the reference at ref_path |
Returns: | Instance of type Reference, Head, or Tag depending on the given path |
---|
Returns: | True if we are a detached reference, hence we point to a specific commit instead to another reference |
---|
Returns: | True if the reference is valid, hence it can be read and points to a valid object or reference. |
---|
Find all refs in the repository
Parameters: |
|
---|---|
Returns: | git.SymbolicReference[], each of them is guaranteed to be a symbolic ref which is not detached. List is lexigraphically sorted The returned objects represent actual subclasses, such as Head or TagReference |
Returns: | In case of symbolic references, the shortest assumable name is the path itself. |
---|
Rename self to a new path
Parameters: |
|
---|---|
Returns: | self |
Raises OSError: | In case a file at path but a different contents already exists |
Returns: | string with a full path name which can be used to initialize a Reference instance, for instance by using Reference.from_path |
---|
Represents a named reference to any object. Subclasses may apply restrictions though, i.e. Heads can only point to commits.
Create a new reference.
Parameters: |
|
---|---|
Returns: | Newly created Reference |
Note: | This does not alter the current HEAD, index or Working Tree |
Returns: | (shortest) Name of this reference - it may contain path components |
---|
Special case of a Symbolic Reference as it represents the repository’s HEAD reference.
Reset our HEAD to the given commit optionally synchronizing the index and working tree. The reference we refer to will be set to commit as well.
Parameters: |
|
---|---|
Returns: | self |
A Head is a named reference to a Commit. Every Head instance contains a name and a Commit object.
Examples:
>>> repo = Repo("/path/to/repo")
>>> head = repo.heads[0]
>>> head.name
'master'
>>> head.commit
<git.Commit "1c09f116cbc2cb4100fb6935bb162daa4723f455">
>>> head.commit.hexsha
'1c09f116cbc2cb4100fb6935bb162daa4723f455'
Checkout this head by setting the HEAD to this reference, by updating the index to reflect the tree we point to and by updating the working tree to reflect the latest index.
The command will fail if changed working tree files would be overwritten.
Parameters: |
|
---|---|
Returns: | The active branch after the checkout operation, usually self unless a new branch has been created. |
Note: | By default it is only allowed to checkout heads - everything else will leave the HEAD detached which is allowed and possible, but remains a special state that some tools might not be able to handle. |
Create a new head. :param repo: Repository to create the head in :param path:
The name or path of the head, i.e. ‘new_branch’ or feature/feature1. The prefix refs/heads is implied.
Parameters: |
|
---|---|
Returns: | Newly created Head |
Note: | This does not alter the current HEAD, index or Working Tree |
Delete the given heads :param force:
If True, the heads will be deleted even if they are not yet merged into the main development stream. Default False
Rename self to a new path
Parameters: |
|
---|---|
Returns: | self |
Note: | respects the ref log as git commands are used |
Class representing a lightweight tag reference which either points to a commit ,a tag object or any other object. In the latter case additional information, like the signature or the tag-creator, is available.
This tag object will always point to a commit object, but may carray additional information in a tag object:
tagref = TagReference.list_items(repo)[0]
print tagref.commit.message
if tagref.tag is not None:
print tagref.tag.message
Returns: | Commit object the tag ref points to |
---|
Create a new tag reference.
Parameters: |
|
---|---|
Returns: | A new TagReference |
Returns: | The object our ref currently refers to. Refs can be cached, they will always point to the actual object as it gets re-created on each query |
---|
Returns: | Tag object this tag ref points to or None in case we are a light weight tag |
---|
Represents a reference pointing to a remote head.
Delete the given remote references. :note:
kwargs are given for compatability with the base class method as we should not narrow the signature.
Returns: | Name of the remote head itself, i.e. master. |
---|---|
Note: | The returned name is usually not qualified enough to uniquely identify a branch |
Returns: | Name of the remote we are a reference of, such as ‘origin’ for a reference named ‘origin/master’ |
---|
Module implementing a remote object allowing easy access to git remotes
Handler providing an interface to parse progress information emitted by git-push and git-fetch and to dispatch callbacks allowing subclasses to react to the progress.
Called whenever the progress changes
Parameters: |
|
---|
You may read the contents of the current line in self._cur_line
Carries information about the result of a push operation of a single head:
info = remote.push()[0]
info.flags # bitflags providing more information about the result
info.local_ref # Reference pointing to the local reference that was pushed
# It is None if the ref was deleted.
info.remote_ref_string # path to the remote reference located on the remote side
info.remote_ref # Remote Reference on the local side corresponding to
# the remote_ref_string. It can be a TagReference as well.
info.old_commit # commit at which the remote_ref was standing before we pushed
# it to local_ref.commit. Will be None if an error was indicated
info.summary # summary line providing human readable english text about the push
Returns: | Remote Reference or TagReference in the local repository corresponding to the remote_ref_string kept in this instance. |
---|
Carries information about the results of a fetch operation of a single head:
info = remote.fetch()[0]
info.ref # Symbolic Reference or RemoteReference to the changed
# remote head or FETCH_HEAD
info.flags # additional flags to be & with enumeration members,
# i.e. info.flags & info.REJECTED
# is 0 if ref is SymbolicReference
info.note # additional notes given by git-fetch intended for the user
info.old_commit # if info.flags & info.FORCED_UPDATE|info.FAST_FORWARD,
# field is set to the previous location of ref, otherwise None
Returns: | Commit of our remote ref |
---|
Returns: | Name of our remote ref |
---|
Provides easy read and write access to a git remote.
Everything not part of this interface is considered an option for the current remote, allowing constructs like remote.pushurl to query the pushurl.
NOTE: When querying configuration, the configuration accessor will be cached to speed up subsequent accesses.
Create a new remote to the given repository :param repo: Repository instance that is to receive the new remote :param name: Desired name of the remote :param url: URL which corresponds to the remote’s name :param kwargs:
Additional arguments to be passed to the git-remote add command
Returns: | New Remote instance |
---|---|
Raises GitCommandError: | |
in case an origin with that name already exists |
Returns: | GitConfigParser compatible object able to read options for only our remote. Hence you may simple type config.get(“pushurl”) to obtain the information |
---|
Returns: | GitConfigParser compatible object able to write options for this remote. |
---|---|
Note: | You can only own one writer at a time - delete it to release the configuration file and make it useable by others. To assure consistent results, you should only query options through the writer. Once you are done writing, you are free to use the config reader once again. |
Create a new remote to the given repository :param repo: Repository instance that is to receive the new remote :param name: Desired name of the remote :param url: URL which corresponds to the remote’s name :param kwargs:
Additional arguments to be passed to the git-remote add command
Returns: | New Remote instance |
---|---|
Raises GitCommandError: | |
in case an origin with that name already exists |
Fetch the latest changes for this remote
Parameters: |
|
---|---|
Returns: | IterableList(FetchInfo, ...) list of FetchInfo instances providing detailed information about the fetch results |
Note: | As fetch does not provide progress information to non-ttys, we cannot make it available here unfortunately as in the ‘push’ method. |
Returns: | Iterator yielding Remote objects of the given repository |
---|
Pull changes from the given branch, being the same as a fetch followed by a merge of branch with your local branch.
Parameters: |
|
---|---|
Returns: | Please see ‘fetch’ method |
Push changes from source branch in refspec to target branch in refspec.
Parameters: |
|
---|---|
Returns: | IterableList(PushInfo, ...) iterable list of PushInfo instances, each one informing about an individual head which had been updated on the remote side. If the push contains rejected heads, these will have the PushInfo.ERROR bit set in their flags. If the operation fails completely, the length of the returned IterableList will be null. |
Returns: | IterableList of RemoteReference objects. It is prefixed, allowing you to omit the remote path portion, i.e.: remote.refs.master # yields RemoteReference('/refs/remotes/origin/master')
|
---|
Returns: | IterableList RemoteReference objects that do not have a corresponding head in the remote reference anymore as they have been deleted on the remote side, but are still available locally. The IterableList is prefixed, hence the ‘origin’ must be omitted. See ‘refs’ property for an example. |
---|
Fetch all changes for this remote, including new branches which will be forced in ( in case your local remote branch is not part the new remote branches ancestry anymore ).
Parameter: | kwargs – Additional arguments passed to git-remote update |
---|---|
Returns: | self |
Represents a git repository and allows you to query references, gather commit information, generate diffs, create and clone repositories query the log.
The following attributes are worth using:
‘working_dir’ is the working directory of the git command, wich is the working tree directory if available or the .git directory in case of bare repositories
‘working_tree_dir’ is the working tree directory, but will raise AssertionError if we are a bare repository.
‘git_dir’ is the .git repository directoy, which is always set.
The name of the currently active branch.
Returns: | Head to the active branch |
---|
Archive the tree at the given revision. :parm ostream: file compatible stream object to which the archive will be written :parm treeish: is the treeish name/id, defaults to active branch :parm prefix: is the optional prefix to prepend to each filename in the archive :parm kwargs:
Additional arguments passed to git-archive NOTE: Use the ‘format’ argument to define the kind of format. Use specialized ostreams to write any format supported by python
Raises GitCommandError: | |
---|---|
in case something went wrong | |
Returns: | self |
Returns: | True if the repository is bare |
---|
The blame information for the given file at the given revision.
Parm rev: | revision specifier, see git-rev-parse for viable options. |
---|---|
Returns: | list: [git.Commit, list: [<line>]] A list of tuples associating a Commit object with a list of lines that changed within the given commit. The Commit objects will be given in order of appearance. |
A list of Head objects representing the branch heads in this repo
Returns: | git.IterableList(Head, ...) |
---|
Create a clone from this repository. :param path:
is the full path of the new repo (traditionally ends with ./<name>.git).
Parameter: | kwargs – odbt = ObjectDatabase Type, allowing to determine the object database implementation used by the returned Repo instance All remaining keyword arguments are given to the git-clone command |
---|---|
Returns: | git.Repo (the newly cloned repo) |
Returns: | GitConfigParser allowing to read the full git configuration, but not to write it The configuration will include values from the system, user and repository configuration files. |
---|---|
Parameter: | config_level – For possible values, see config_writer method If None, all applicable levels will be used. Specify a level in case you know which exact file you whish to read to prevent reading multiple files for instance |
Note: | On windows, system configuration cannot currently be read as the path is unknown, instead the global path will be used. |
Returns: | GitConfigParser allowing to write values of the specified configuration file level. Config writers should be retrieved, used to change the configuration ,and written right away as they will lock the configuration file in question and prevent other’s to write it. |
---|---|
Parameter: | config_level – One of the following values system = sytem wide configuration file global = user level configuration file repository = configuration file for this repostory only |
Create a new head within the repository. For more documentation, please see the Head.create method.
Returns: | newly created Head Reference |
---|
Create a new remote.
For more information, please see the documentation of the Remote.create methods
Returns: | Remote reference |
---|
Create a new tag reference. For more documentation, please see the TagReference.create method.
Returns: | TagReference object |
---|
Delete the given heads
Parameter: | kwargs – Additional keyword arguments to be passed to git-branch |
---|
Returns: | HEAD Object pointing to the current head reference |
---|
A list of Head objects representing the branch heads in this repo
Returns: | git.IterableList(Head, ...) |
---|
Returns: | IndexFile representing this repository’s index. |
---|
Initialize a git repository at the given path if specified
Parameter: | path – is the full path to the repo (traditionally ends with /<name>.git) or None in which case the repository will be created in the current working directory |
---|---|
Parm mkdir: | if specified will create the repository directory if it doesn’t already exists. Creates the directory with a mode=0755. Only effective if a path is explicitly given |
Parm kwargs: | keyword arguments serving as additional options to the git-init command |
Returns: | git.Repo (the newly created repo) |
Returns: | True, the repository is considered dirty. By default it will react like a git-status without untracked files, hence it is dirty if the index or the working copy have changes. |
---|
A list of Commit objects representing the history of a given ref/commit
Parm rev: | revision specifier, see git-rev-parse for viable options. If None, the active branch will be used. |
---|---|
Parm paths: | is an optional path or a list of paths to limit the returned commits to Commits that do not contain that path or the paths will not be returned. |
Parm kwargs: | Arguments to be passed to git-rev-list - common ones are max_count and skip |
Note: | to receive only commits between two named revisions, use the “revA..revB” revision specifier |
:return git.Commit[]
Returns: | Iterator yielding Tree objects |
---|---|
Note: | Takes all arguments known to iter_commits method |
A list of Reference objects representing tags, heads and remote references.
Returns: | IterableList(Reference, ...) |
---|
A list of Reference objects representing tags, heads and remote references.
Returns: | IterableList(Reference, ...) |
---|
Returns: | Remote with the specified name |
---|---|
Raises ValueError: | |
if no remote with such a name exists |
Returns: | Object at the given revision, either Commit, Tag, Tree or Blob |
---|---|
Parameter: | rev – git-rev-parse compatible revision specification, please see http://www.kernel.org/pub/software/scm/git/docs/git-rev-parse.html for details |
Note: | Currently there is no access to the rev-log, rev-specs may only contain topological tokens such ~ and ^. |
Raises BadObject: | |
if the given revision could not be found |
Returns: | TagReference Object, reference pointing to a Commit or Tag |
---|---|
Parameter: | path – path to the tag reference, i.e. 0.1.5 or tags/0.1.5 |
The Tree object for the given treeish revision Examples:
repo.tree(repo.heads[0])
Parameter: | rev – is a revision pointing to a Treeish ( being a commit or tree ) |
---|---|
Returns: | git.Tree |
Note: | If you need a non-root level tree, find it by iterating the root tree. Otherwise it cannot know about its path relative to the repository root and subsequent operations might have unexpected results. |
Returns: | list(str,...) Files currently untracked as they have not been staged yet. Paths are relative to the current working directory of the git command. |
---|---|
Note: | ignored files will not appear here, i.e. files mentioned in .gitignore |
Returns: | The working tree directory of our git repository |
---|---|
Raises AssertionError: | |
If we are a bare repository |
Package with general repository related functions
Returns: | Object at the given revision, either Commit, Tag, Tree or Blob |
---|---|
Parameter: | rev – git-rev-parse compatible revision specification, please see http://www.kernel.org/pub/software/scm/git/docs/git-rev-parse.html for details |
Note: | Currently there is no access to the rev-log, rev-specs may only contain topological tokens such ~ and ^. |
Raises BadObject: | |
if the given revision could not be found |
Copy all data from the source stream into the destination stream in chunks of size chunk_size
Returns: | amount of bytes written |
---|
Represents stat information as presented by git at the end of a merge. It is created from the output of a diff operation.
Example:
c = Commit( sha1 )
s = c.stats
s.total # full-stat-dict
s.files # dict( filepath : stat-dict )
stat-dict
A dictionary with the following keys and values:
deletions = number of deleted lines as int
insertions = number of inserted lines as int
lines = total number of lines changed as int, or deletions + insertions
full-stat-dict
In addition to the items in the stat-dict, it features additional information:
files = number of changed files as int
Wrapper around a file-like object that remembers the SHA1 of the data written to it. It will write a sha when the stream is closed or if the asked for explicitly usign write_sha.
Only useful to the indexfile
Note: | Based on the dulwich project |
---|
Defines an interface for iterable items which is to assure a uniform way to retrieve and iterate items within the git repository
Find all items of this type - subclasses can specify args and kwargs differently. If no args are given, subclasses are obliged to return all items if no additional arguments arg given.
Note: | Favor the iter_items method as it will |
---|
:return:list(Item,...) list of item instances
List of iterable objects allowing to query an object by id or by named index:
heads = repo.heads
heads.master
heads['master']
heads[0]
It requires an id_attribute name to be set which will be queried from its contained items to have a means for comparison.
A prefix can be specified which is to be used in case the id returned by the items always contains a prefix that does not matter to the user, so it can be left out.
The lock file will block until a lock could be obtained, or fail after a specified timeout.
Note: | If the directory containing the lock was removed, an exception will be raised during the blocking period, preventing hangs as the lock can never be obtained. |
---|
Provides methods to obtain, check for, and release a file based lock which should be used to handle concurrent access to the same file.
As we are a utility class to be derived from, we only use protected methods.
Locks will automatically be released on destruction