Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- Places where i found git on my system:
- [root@analysis ~]# which git
- /usr/bin/git
- [root@analysis ~]# ll /var/www/git
- total 224
- -rwxr-xr-x 1 root root 221475 May 28 2013 gitweb.cgi
- -rwxrwxrwx. 1 apache apache 0 Dec 7 2012 mod_auth_openid.db
- drwxr-xr-x 2 apache apache 4096 Dec 22 2014 static
- [root@analysis ~]#
- [root@analysis ~]# ll /var/lib/git
- total 4
- drwxr-xr-x. 2 root root 4096 Oct 19 2013 hooks
- [root@analysis ~]#
- [root@analysis ~]# ll /usr/bin/git
- -rwxr-xr-x 105 root root 1140648 Mar 5 2013 /usr/bin/git
- [root@analysis ~]#
- [root@analysis ~]# ll /var/git
- total 4
- drwxr-xr-x. 2 root root 4096 Mar 19 13:58 hooks
- [root@analysis ~]#
- [root@analysis ~]# ll /etc/bash_completion.d/git
- -rw-r--r-- 1 root root 45281 Mar 5 2013 /etc/bash_completion.d/git
- [root@analysis ~]#
- [root@analysis ~]# cat /var/spool/abrt/ccpp-2012-12-19-17:34:56-61698/analysis-2012121917351355918718/etc/xinetd.d/git
- # default: off
- # description: The git dæmon allows git repositories to be exported using \
- # the git:// protocol.
- service git
- {
- disable = yes
- socket_type = stream
- wait = no
- user = nobody
- server = /usr/libexec/git-core/git-daemon
- server_args = --base-path=/var/lib/git --export-all --user-path=public_git --syslog --inetd --verbose
- log_on_failure += USERID
- }
- [root@analysis ~]#
- [root@analysis ~]# cat /etc/xinetd.d/git
- # default: off
- # description: The git dæmon allows git repositories to be exported using \
- # the git:// protocol.
- service git
- {
- disable = yes
- socket_type = stream
- wait = no
- user = nobody
- server = /usr/libexec/git-core/git-daemon
- server_args = --base-path=/var/lib/git --export-all --user-path=public_git --syslog --inetd --verbose
- log_on_failure += USERID
- }
- [root@analysis ~]#
- [root@analysis ~]# ls -l /usr/libexec/git-core/
- total 122384
- -rwxr-xr-x 105 root root 1140648 Mar 5 2013 git
- -rwxr-xr-x 105 root root 1140648 Mar 5 2013 git-add
- -rwxr-xr-x 1 root root 35716 Mar 5 2013 git-add--interactive
- -rwxr-xr-x 1 root root 19036 Mar 5 2013 git-am
- -rwxr-xr-x 105 root root 1140648 Mar 5 2013 git-annotate
- -rwxr-xr-x 105 root root 1140648 Mar 5 2013 git-apply
- -rwxr-xr-x 105 root root 1140648 Mar 5 2013 git-archive
- -rwxr-xr-x 1 root root 10021 Mar 5 2013 git-bisect
- -rwxr-xr-x 105 root root 1140648 Mar 5 2013 git-bisect--helper
- -rwxr-xr-x 105 root root 1140648 Mar 5 2013 git-blame
- -rwxr-xr-x 105 root root 1140648 Mar 5 2013 git-branch
- ...
- ...
- ...
- [root@analysis ~]# ll /usr/lib/python2.6/site-packages/GitPython-0.3.2.RC1-py2.6.egg/git
- total 344
- -rwxr-xr-x 1 root root 16919 May 20 2013 cmd.py
- -rw-r--r-- 1 root root 19050 May 20 2013 cmd.pyc
- -rwxr-xr-x 1 root root 13447 May 20 2013 config.py
- -rw-r--r-- 1 root root 15342 May 20 2013 config.pyc
- -rwxr-xr-x 1 root root 1837 May 20 2013 db.py
- -rw-r--r-- 1 root root 2741 May 20 2013 db.pyc
- -rwxr-xr-x 1 root root 10364 May 20 2013 diff.py
- -rw-r--r-- 1 root root 11663 May 20 2013 diff.pyc
- -rwxr-xr-x 1 root root 2004 May 20 2013 exc.py
- -rw-r--r-- 1 root root 3814 May 20 2013 exc.pyc
- drwxr-xr-x 2 root root 4096 May 20 2013 index
- -rwxr-xr-x 1 root root 1175 May 20 2013 __init__.py
- -rw-r--r-- 1 root root 1455 May 20 2013 __init__.pyc
- drwxr-xr-x 3 root root 4096 May 20 2013 objects
- -rwxr-xr-x 1 root root 46544 May 20 2013 odict.py
- -rw-r--r-- 1 root root 56624 May 20 2013 odict.pyc
- drwxr-xr-x 2 root root 4096 May 20 2013 refs
- -rwxr-xr-x 1 root root 23603 May 20 2013 remote.py
- -rw-r--r-- 1 root root 24050 May 20 2013 remote.pyc
- drwxr-xr-x 2 root root 4096 May 20 2013 repo
- drwxr-xr-x 4 root root 4096 May 20 2013 test
- -rwxr-xr-x 1 root root 20643 May 20 2013 util.py
- -rw-r--r-- 1 root root 26595 May 20 2013 util.pyc
- [root@analysis ~]#
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement