Git::Raw::Index(3pm) | User Contributed Perl Documentation | Git::Raw::Index(3pm) |
Git::Raw::Index - Git index class
version 0.90
A Git::Raw::Index represents an index in a Git repository.
WARNING: The API of this module is unstable and may change without warning (any change will be appropriately documented in the changelog).
Create a new in-memory index. This is currently of little use.
Retrieve the Git::Raw::Repository owning the index.
Add $entry to the index. $entry should either be the path of a file or alternatively a Git::Raw::Index::Entry.
Add or update an entry from an in-memory file. The entry will be placed at $path with the contents of $buffer. $buffer may either be string or a reference to a string. $mode is the file mode; it defaults to 0100644. Returns a Git::Raw::Index::Entry object.
Add or update all index entries to match the working directory. Valid fields for the %opts hash are:
List of path patterns to add.
Valid fields for the %flags member:
Forced addition of files (even if they are ignored).
Disable pathspec pattern matching against entries in $paths.
Enable pathspec pattern matching against entries in $paths (default).
The callback to be called for each added or updated item. Receives the $path and matching $pathspec. This callback should return 0 if the file should be added to the index, ">0" if it should be skipped or "<0" to abort.
Find the first Git::Raw::Index::Entry which points to a given $path. If an entry cannot be found, this function will return "undef".
Remove $path from the index.
Remove all matching index entries. See "Git::Raw::Index->update_all()" for valid %opts values.
Retrieve the full path to the index file on disk.
Retrieve the SHA-1 checksum over the index file, except for the last 20 bytes which is the checksum content itself. If the index does not exist on-disk an empty OID will be returned.
Clear the index.
Update the index, reading it from disk.
Write the index to disk.
Replace the index content with $tree.
Create a new tree from the index and write it to disk. $repo optionally indicates which Git::Raw::Repository the tree should be written to. Returns a Git::Raw::Tree object.
Update files in the working tree to match the contents of the index. See "Git::Raw::Repository->checkout()" for valid %checkout_opts values.
Retrieve the number of entries in the index.
Retrieve index entries. Returns a list of Git::Raw::Index::Entry objects.
Add a new conflict entry. $ancestor, $theirs and $ours should be Git::Raw::Index::Entry objects.
Get the conflict entry for $path. If $path has no conflict entry, this function will return "undef".
Remove $path from the index.
Determine if the index contains entries representing file conflicts.
Remove all conflicts in the index (entries with a stage greater than 0).
Retrieve index entries that represent a conflict. Returns a list of Git::Raw::Index::Conflict objects.
Merge two files as they exist in the index. $ancestor, $theirs and $ours should be Git::Raw::Index::Entry objects. Returns a Git::Raw::Merge::File::Result object. Valid fields for the %merge_opts hash are:
The name of the "our" side of conflicts.
The name of the "their" side of conflicts.
The name of the common ancestor side of conflicts.
Specify content automerging behaviour. Valid values are "ours", "theirs", and "union".
The size of conflict markers.
Merge file flags. Valid values include:
Create standard conflicted merge file.
Create diff3-style files.
Condense non-alphanumeric regions for simplified diff file.
Ignore all whitespace.
Ignore changes in amount of whitespace.
Ignore whitespace at end of line.
Use the "patience diff" algorithm.
Take extra time to find minimal diff.
Update all index entries to match the working directory. Valid fields for the %opts hash are:
List of path patterns to add.
The callback to be called for each updated item. Receives the $path and matching $pathspec. This callback should return 0 if the file should be added to the index, ">0" if it should be skipped, or "<0" to abort.
Retrieve the index's capabilities. Returns a hash with members "ignore_case", "no_filemode" and "no_symlinks", each indicating if the Git::Raw::Index supports the capability.
Retrieve or set the index version.
Alessandro Ghedini <alexbio@cpan.org>
Jacques Germishuys <jacquesg@cpan.org>
Copyright 2012 Alessandro Ghedini.
This program is free software; you can redistribute it and/or modify it under the terms of either: the GNU General Public License as published by the Free Software Foundation; or the Artistic License.
See http://dev.perl.org/licenses/ for more information.
2022-10-29 | perl v5.36.0 |