Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

git::pureperl(3pm) [debian man page]

Git::PurePerl(3pm)					User Contributed Perl Documentation					Git::PurePerl(3pm)

NAME
Git::PurePerl - A Pure Perl interface to Git repositories SYNOPSIS
my $git = Git::PurePerl->new( directory => '/path/to/git/' ); $git->master->committer; $git->master->comment; $git->get_object($git->master->tree); DESCRIPTION
This module is a Pure Perl interface to Git repositories. It was mostly based on Grit <http://grit.rubyforge.org/>. METHODS
master get_object get_object_packed get_object_loose create_object all_sha1s MAINTAINANCE
This module is maintained in git at http://github.com/bobtfish/git-pureperl/ <http://github.com/bobtfish/git-pureperl/>. Patches are welcome, please come speak to one of the Gitalist team on "#gitalist". AUTHOR
Leon Brocard <acme@astray.com> CONTRIBUTORS
Chris Reinhardt Tomas (t0m) Doran Dan (broquaint) Brook Alex Vandiver Dagfinn Ilmari Mannsaaker COPYRIGHT
Copyright (C) 2008, Leon Brocard and the above mentioned contributors. LICENSE
This module is free software; you can redistribute it or modify it under the same terms as Perl itself. perl v5.14.2 2011-07-15 Git::PurePerl(3pm)

Check Out this Related Man Page

GIT-REMOTE-FD(1)						    Git Manual							  GIT-REMOTE-FD(1)

NAME
git-remote-fd - Reflect smart transport stream back to caller SYNOPSIS
"fd::<infd>[,<outfd>][/<anything>]" (as URL) DESCRIPTION
This helper uses specified file descriptors to connect to a remote Git server. This is not meant for end users but for programs and scripts calling git fetch, push or archive. If only <infd> is given, it is assumed to be a bidirectional socket connected to remote Git server (git-upload-pack, git-receive-pack or git-upload-achive). If both <infd> and <outfd> are given, they are assumed to be pipes connected to a remote Git server (<infd> being the inbound pipe and <outfd> being the outbound pipe. It is assumed that any handshaking procedures have already been completed (such as sending service request for git://) before this helper is started. <anything> can be any string. It is ignored. It is meant for providing information to user in the URL in case that URL is displayed in some context. ENVIRONMENT VARIABLES
GIT_TRANSLOOP_DEBUG If set, prints debugging information about various reads/writes. EXAMPLES
git fetch fd::17 master Fetch master, using file descriptor #17 to communicate with git-upload-pack. git fetch fd::17/foo master Same as above. git push fd::7,8 master (as URL) Push master, using file descriptor #7 to read data from git-receive-pack and file descriptor #8 to write data to same service. git push fd::7,8/bar master Same as above. DOCUMENTATION
Documentation by Ilari Liusvaara and the Git list <git@vger.kernel.org[1]> GIT
Part of the git(1) suite NOTES
1. git@vger.kernel.org mailto:git@vger.kernel.org Git 1.8.5.3 01/14/2014 GIT-REMOTE-FD(1)
Man Page

5 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Updating git clones

Hi, I'm fairly new to the git command and I'm trying to figure out how to check if your local clone is up to date with the master. I know you can do the same thing on packages with apt-get by using update and then upgrade. Is there something similar with git? (0 Replies)
Discussion started by: silverdust
0 Replies

2. UNIX for Dummies Questions & Answers

How to downgrade cygwin to a part. version?

I'd like to compile gxemul under cygwin, Here a nice guy who ported the source code, but the prerequisites are needing the exact versions of the libraries https://github.com/fd00/yacp/tree/master/gxemul If I download the setup.exe from canonical cygwin web site, it automatically installs me the... (1 Reply)
Discussion started by: lucky7456969
1 Replies

3. Shell Programming and Scripting

Error downloading from GiT: fatal: unable to connect to github.com:

My below command fails with the error as shown: $ sudo git clone git://github.com/ansible/ansible.git Cloning into 'ansible'... fatal: unable to connect to github.com: github.com: errno=Connection refused github.com: errno=Connection refused The ping from my server to github.com is... (2 Replies)
Discussion started by: mohtashims
2 Replies

4. Red Hat

Git command

trying to add git link to my computer as root and getting error message git clone https://github.com/xxxxxxx/xxxxx.sh bash: git: command not found Please use CODE tags as required by forum rules! (3 Replies)
Discussion started by: DOkuwa
3 Replies

5. UNIX for Beginners Questions & Answers

Git or PKGutil

i am running solaris 10 and they want GIt on there. The instructions that I found on line want me to use pkgutil which i don't have either. Most packages that i have installed come from the cd and are labeled SUNW... I see one instruction to add pkgadd -d http://get.opencsw.org/now ... (4 Replies)
Discussion started by: goya
4 Replies