File: PKG-INFO

package info (click to toggle)
legit 1.2.0.post0-5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 212 kB
  • sloc: python: 738; makefile: 6
file content (137 lines) | stat: -rw-r--r-- 5,169 bytes parent folder | download | duplicates (6)
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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
Metadata-Version: 1.2
Name: legit
Version: 1.2.0.post0
Summary: Git for Humans.
Home-page: https://github.com/frostming/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 <https://news.ycombinator.com/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
        -------------
        
        ``switch <branch>``
            Switches to specified branch.
            Defaults to current branch.
            Automatically stashes and unstashes any changes. (alias: ``sw``)
        
        ``sync [<branch>]``
            Synchronizes the given branch. Defaults to current branch.
            Stash, Fetch, Auto-Merge/Rebase, Push, and Unstash.
            You can only sync published branches. (alias: ``sy``)
        
        ``publish [<branch>]``
            Publishes specified branch to the remote. (alias: ``pub``)
        
        ``unpublish <branch>``
            Removes specified branch from the remote. (alias: ``unp``)
        
        ``undo``
            Un-does the last commit in git history.  (alias: ``un``)
        
        ``branches [<wildcard pattern>]``
            Display a list of available branches.
            Allows wildcard pattern matching of branch name.
        
        
        The Installation
        ----------------
        
        .. image:: https://img.shields.io/pypi/v/legit.svg
            :target: https://pypi.python.org/pypi/legit/
        
        .. image:: https://img.shields.io/travis/frostming/legit/master.svg
            :target: https://travis-ci.org/frostming/legit/
        
        .. image:: https://img.shields.io/coveralls/github/frostming/legit.svg
            :target: https://coveralls.io/r/frostming/legit/
        
        .. image:: https://repl.it/badge/github/frostming/legit
            :target: https://repl.it/github/frostming/legit
        
        
        From `PyPI <https://pypi.python.org/pypi/legit/>`_ with the Python package manager::
        
            pip install legit
        
        Or download a standalone Windows executable from `GitHub Releases <https://github.com/frostming/legit/releases>`_.
        
        To install the cutting edge version from the git repository::
        
            git clone https://github.com/frostming/legit.git
            cd legit
            python setup.py install
        
        Note: if you encountered `Permission denied`,
        prepend `sudo` before the `pip` or `python setup.py` command.
        
        You'll then have the wonderful ``legit`` command available. Run it within
        a repository.
        
        To view usage and examples, run ``legit`` with no commands or options::
        
            legit
        
        To install the git aliases, run the following command::
        
            legit --install
        
        To uninstall the git aliases, run the following command::
        
            legit --uninstall
        
        
        Command Options
        ---------------
        
        All legit commands support ``--verbose`` and ``--fake`` options.
        
        In order to view the git commands invoked by legit, use the ``--verbose`` option::
        
            legit sync --verbose
        
        If you want to see the git commands used by legit but don't want them invoked, use the ``--fake`` option::
        
            legit publish --fake
        
        
        Caveats
        -------
        
        - All remote operations are carried out by the remote identified in ``$ git config legit.remote remotename``
        - If a ``stash pop`` merge fails, Legit stops. I'd like to add checking for a failed merge, and undo the command with friendly error reporting.
        
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Natural Language :: English
Classifier: License :: OSI Approved :: BSD License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Requires-Python: >=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*