Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

git-remote-fd(1) [linux 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)

Check Out this Related Man Page

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

NAME
git-peek-remote - List the references in a remote repository SYNOPSIS
git peek-remote [--upload-pack=<git-upload-pack>] [<host>:]<directory> DESCRIPTION
This command is deprecated; use git ls-remote instead. OPTIONS
--upload-pack=<git-upload-pack> Use this to specify the path to git-upload-pack on the remote side, if it is not found on your $PATH. Some installations of sshd ignores the user's environment setup scripts for login shells (e.g. .bash_profile) and your privately installed git may not be found on the system default $PATH. Another workaround suggested is to set up your $PATH in ".bashrc", but this flag is for people who do not want to pay the overhead for non-interactive shells, but prefer having a lean .bashrc file (they set most of the things up in .bash_profile). <host> A remote host that houses the repository. When this part is specified, git-upload-pack is invoked via ssh. <directory> The repository to sync from. AUTHOR
Written by Junio C Hamano <gitster@pobox.com[1]> DOCUMENTATION
Documentation by Junio C Hamano. GIT
Part of the git(1) suite NOTES
1. gitster@pobox.com mailto:gitster@pobox.com Git 1.7.1 07/05/2010 GIT-PEEK-REMOTE(1)
Man Page

7 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

problem with count

Hi, consider this file "master" which contains data as 11:skjs:24:asd2 1:skdfjk:23:sfdf 12:su:25:jkh5 13:gre:22:kljl7 14:sai:34:kjg7 I am trying to enter data into the file "master" i want to count the number of times 11 is present in the file "master" that to in the first filed... (5 Replies)
Discussion started by: uni_ajay_r
5 Replies

2. Shell Programming and Scripting

broken pipe for ftp file transfer

hi i am trying to connect to a remote server and trying to uploa a file. during upload i am getting ":Broken pipe" error please help (0 Replies)
Discussion started by: Satyak
0 Replies

3. AIX

NIM Questions

I have been trying to increase the NIM usage in my AIX environment especially for patching, got few questions 1. If I have a service pack available in the nim server, how do I define that particular directory as an LPP source, without again copying it somewhere else ie I want to define that... (5 Replies)
Discussion started by: balaji_prk
5 Replies

4. Shell Programming and Scripting

How to fetch File from a URL to Unix Server?

Hello All, I wanted to get the software to be fetched from the Service Provide URL to my unix server. I tired using the mget, but resulted in error. Please take a look. $ wget -O V3-0-5-2.Solaris8-SPARC.tar.gz --http-user=hd87es3 --http-passwd=987dnja7 http://beyond.abinitio.com... (3 Replies)
Discussion started by: raghunsi
3 Replies

5. 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

6. OS X (Apple)

Man git -add

I meant to type in: man git-add //no space but I typed this in instead: man git -add // space between git and -add There were all these spewing out; not quite sure what I did. I am new to unix and the terminal. Does anyone know what man git -add does and how do I undo... (2 Replies)
Discussion started by: BuDop
2 Replies

7. Shell Programming and Scripting

Fetching data particular data from the file.

Hi All, I have one fine which contaning the record as below, I need to fetch the number which is in Bold and from second line only URL need to pick. :ABCD C7QyzBXIs58k 1 fdmlksdlkfn ... (4 Replies)
Discussion started by: Riverstone
4 Replies