[git-users] What's the process GIT runs on Linux?

2014-01-27 Thread Jirong Hu
I am trying to find the process GIT runs on Linux, as well as on Windows. 
Or there is no such thing?

Thanks
Jirong

-- 
You received this message because you are subscribed to the Google Groups Git 
for human beings group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to git-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: [git-users] What's the process GIT runs on Linux?

2014-01-27 Thread Jirong Hu
Thanks for the explanation. I am using SSH.

Jirong


On Mon, Jan 27, 2014 at 10:13 AM, John McKown
john.archie.mck...@gmail.comwrote:

 git is a command, like notepad or vim. There is not a long running
 process called git.

 Now, if you are talking about having a bare repository on a server, from
 which you can clone or fetch, and to which you can push, you have three
 options. I use SSH. It does not require any git server type software. It
 just uses the standard SSH protocol to send data to the remote host. The
 second way is via HTTP or HTTPS, which requires a Web server and,
 apparently, WebDAV set up on it. The third method is using the git
 protocol, which is run by the git-daemon process on the server.

 ref on the git on a server:
 http://git-scm.com/book/en/Git-on-the-Server-The-Protocols
 git-daemon:
 https://www.kernel.org/pub/software/scm/git/docs/git-daemon.html
 git via HTTP/S:
 https://www.kernel.org/pub/software/scm/git/docs/howto/setup-git-server-over-http.txt



 On Mon, Jan 27, 2014 at 8:54 AM, Jirong Hu jirong...@gmail.com wrote:

 I am trying to find the process GIT runs on Linux, as well as on Windows.
 Or there is no such thing?

 Thanks
 Jirong

 --
 You received this message because you are subscribed to the Google Groups
 Git for human beings group.
 To unsubscribe from this group and stop receiving emails from it, send an
 email to git-users+unsubscr...@googlegroups.com.
 For more options, visit https://groups.google.com/groups/opt_out.




 --
 Wasn't there something about a PASCAL programmer knowing the value of
 everything and the Wirth of nothing?

 Maranatha! 
 John McKown

 --
 You received this message because you are subscribed to a topic in the
 Google Groups Git for human beings group.
 To unsubscribe from this topic, visit
 https://groups.google.com/d/topic/git-users/Xfo_-VtJS58/unsubscribe.
 To unsubscribe from this group and all its topics, send an email to
 git-users+unsubscr...@googlegroups.com.
 For more options, visit https://groups.google.com/groups/opt_out.


-- 
You received this message because you are subscribed to the Google Groups Git 
for human beings group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to git-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: [git-users] What's the process GIT runs on Linux?

2014-01-27 Thread Konstantin Khomoutov
On Mon, 27 Jan 2014 06:54:46 -0800 (PST)
Jirong Hu jirong...@gmail.com wrote:

 I am trying to find the process GIT runs on Linux, as well as on
 Windows. Or there is no such thing?

Please try to narrow your question down.
What is the process?  An executable binary file which is started by
an OS and is running?  A sequence of actions to carry out a task?

If it's the first, then the Git suite consists of multiple executable
files which are run to perform different tasks.  These executable files
are then able to create other OS processes -- for instance to call the
shell, Perl and Tcl interpreters (or even everything at all in the case
of the repository hooks).

To me, your questions smells like an XY problem [1] so please explain
what you're trying to achieve rather than what you asked.

1. http://meta.stackoverflow.com/questions/66377/what-is-the-xy-problem

-- 
You received this message because you are subscribed to the Google Groups Git 
for human beings group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to git-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.