Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Develop #36

Open
wants to merge 7 commits into
base: develop
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 11 additions & 1 deletion NEWS.txt
Original file line number Diff line number Diff line change
@@ -1,9 +1,19 @@
News
====

0.1.1

*Release date: March 28, 2012*

* Fix issue #1 which makes the git-sweep help menus more useful
* Fix a minor grammar issue in the help
* Fix issue #2 which dropped extra options when telling you to use
cleanup
* Added a --force option to skip confirmation prompt

0.1.0
-----

*Release date: 0.1.0*
*Release date: n/a*

* Initial release
7 changes: 4 additions & 3 deletions bootstrap.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,9 +54,10 @@
except ImportError:
ez = {}
if USE_DISTRIBUTE:
exec urllib2.urlopen('http://python-distribute.org/distribute_setup.py'
).read() in ez
ez['use_setuptools'](to_dir=tmpeggs, download_delay=0, no_fake=True)
ez = {}
#exec urllib2.urlopen('http://python-distribute.org/distribute_setup.py'
# ).read() in ez
#ez['use_setuptools'](to_dir=tmpeggs, download_delay=0, no_fake=True)
else:
exec urllib2.urlopen('http://peak.telecommunity.com/dist/ez_setup.py'
).read() in ez
Expand Down
14 changes: 12 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
README = open(os.path.join(here, 'README.rst')).read()
NEWS = open(os.path.join(here, 'NEWS.txt')).read()

version = '0.1.0'
version = '0.1.1'

install_requires = [
'GitPython>=0.3.2RC1']
Expand All @@ -20,7 +20,17 @@
description="Clean up branches from your Git remotes",
long_description=README + '\n\n' + NEWS,
classifiers=[
# Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
'Development Status :: 4 - Beta',
'Environment :: Console',
'License :: OSI Approved :: MIT License',
'Intended Audience :: Developers',
'Natural Language :: English',
'Operating System :: POSIX',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Topic :: Software Development :: Quality Assurance',
'Topic :: Software Development :: Version Control',
'Topic :: Text Processing'
],
keywords='git maintenance branches',
author='Arc90, Inc.',
Expand Down
2 changes: 1 addition & 1 deletion src/gitsweep/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ class CommandLine(object):
"""
parser = ArgumentParser(
description='Clean up your Git remote branches.',
usage='git-sweep <action> [-h]',
usage='git-sweep <action> [-h] --origin [remote name] --master [branch name]',
)

_sub_parsers = parser.add_subparsers(title='action',
Expand Down
2 changes: 1 addition & 1 deletion src/gitsweep/tests/test_cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ def test_help(self):
(retcode, stdout, stderr) = self.gscommand('git-sweep -h')

self.assertResults('''
usage: git-sweep <action> [-h]
usage: git-sweep <action> [-h] --origin [remote name] --master [branch name]

Clean up your Git remote branches.

Expand Down