This file is indexed.

/usr/lib/python2.7/dist-packages/legit-0.1.1.egg-info/PKG-INFO is in legit 0.1.1-4.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
Metadata-Version: 1.1
Name: legit
Version: 0.1.1
Summary: Git for Humans.
Home-page: https://github.com/kennethreitz/legit
Author: Kenneth Reitz
Author-email: me@kennethreitz.com
License: BSD
Description: .. -*-restructuredtext-*-
        
        Legit: Git for Humans
        =====================
        
        Inspired by GitHub for Mac.
        
        
        The Concept
        -----------
        
        `GitHub for Mac <http://mac.github.com>`_ is not just a Git client.
        
        This `comment <http://www.hackerne.ws/item?id=2684483>`_ on Hacker News
        says it best:
        
            They haven't re-created the git CLI tool in a GUI, they've created something different. They've created a tool that makes Git more accessible. Little things like auto-stashing when you switch branches will confuse git veterans, but it will make Git much easier to grok for newcomers because of the assumptions it makes about your Git workflow.
        
        Why not bring this innovation back to the command line?
        
        
        The Interface
        -------------
        
        ``branches``
            Get a nice pretty list of available branches.
        
        ``sync [<branch>]``
            Syncronizes the given branch. Defaults to current branch.
            Stash, Fetch, Auto-Merge/Rebase, Push, and Unstash.
            You can only sync published branches.
        
        ``switch <branch>``
            Switches to specified branch.
            Defaults to current branch.
            Automatically stashes and unstashes any changes.
        
        ``sprout [<branch>] <new-branch>``
            Creates a new branch off of the specified branch.
            Swiches to it immediately.
        
        ``harvest [<branch>] <new-branch>``
            Creates a new branch off of the specified branch.
            Swiches to it immediately.
        
        ``graft <branch> <into-branch>``
            Auto-Merge/Rebase of specified branch into the second branch.
        
        ``publish <branch>``
            Publishes specified branch to the remote.
        
        ``unpublish <branch>``
            Removes specified branch from the remote.
        
        ``install``
            Installs legit git aliases.
        
        
        The Installation
        ----------------
        
        Installing Legit is easy with pip::
        
            $ pip install legit
        
        You'll then have the wonderful ``legit`` command available. Run it within
        a repository.
        
        To install the git aliases, run the following command::
        
            $ legit install
        
        
        Caveats
        -------
        
        - All remote operations are carried out by the first remote found.
        - If a ``stash pop`` merge fails, Legit stops. I'd like to add checking for a merge failure, and undo the command with friendly error reporting.
        - Pip install is cumbersome to people unfamiliar with Python. Package. (Py2App + PyInstaller)
        
Platform: UNKNOWN
Classifier: Intended Audience :: Developers
Classifier: Natural Language :: English
Classifier: License :: OSI Approved :: BSD License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7