Skip to content

Commit 8439805

Browse files
committed
Wording tweaks; update brew instructions (fixes earwig#13)
1 parent 4e8dab5 commit 8439805

File tree

6 files changed

+16
-15
lines changed

6 files changed

+16
-15
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ version of git and at least Python 2.7 installed.
1212

1313
With [Homebrew](http://brew.sh/):
1414

15-
brew install pr0d1r2/contrib/gitup && brew link gitup
15+
brew install gitup
1616

1717
## From source
1818

@@ -85,9 +85,9 @@ By default, gitup will fetch all remotes in a repository. Pass `--current-only`
8585
(or `-c`) to make it only fetch the remote tracked by the current branch.
8686

8787
gitup will _merge_ upstream branches by default unless `pull.rebase` or
88-
`branch.<name>.rebase` is specified in git's config. Pass `--rebase` or `-r` to
89-
make it always _rebase_ (like doing `git pull --rebase=preserve`). Pass
90-
`--merge` or `-m` to make it always merge.
88+
`branch.<name>.rebase` is specified in your git config. Pass `--rebase` or `-r`
89+
to make it always _rebase_ (this is like doing `git pull --rebase=preserve`).
90+
Pass `--merge` or `-m` to make it always merge.
9191

9292
For a list of all command arguments and abbreviations:
9393

gitup/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# -*- coding: utf-8 -*-
22
#
33
# Copyright (C) 2011-2015 Ben Kurtovic <[email protected]>
4-
# See the LICENSE file for details.
4+
# Released under the terms of the MIT License. See LICENSE for details.
55

66
"""
77
gitup: the git repository updater

gitup/config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# -*- coding: utf-8 -*-
22
#
33
# Copyright (C) 2011-2015 Ben Kurtovic <[email protected]>
4-
# See the LICENSE file for details.
4+
# Released under the terms of the MIT License. See LICENSE for details.
55

66
from __future__ import print_function
77

gitup/script.py

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,27 @@
11
# -*- coding: utf-8 -*-
22
#
33
# Copyright (C) 2011-2015 Ben Kurtovic <[email protected]>
4-
# See the LICENSE file for details.
4+
# Released under the terms of the MIT License. See LICENSE for details.
55

66
from __future__ import print_function
77

88
import argparse
99

1010
from colorama import init as color_init, Style
1111

12-
from . import __version__, __email__
12+
from . import __version__
1313
from .config import (get_bookmarks, add_bookmarks, delete_bookmarks,
1414
list_bookmarks)
1515
from .update import update_bookmarks, update_directories
1616

1717
def main():
1818
"""Parse arguments and then call the appropriate function(s)."""
1919
parser = argparse.ArgumentParser(
20-
description="""Easily update multiple git repositories at once.""",
20+
description="Easily update multiple git repositories at once.",
2121
epilog="""
2222
Both relative and absolute paths are accepted by all arguments.
23-
Questions? Comments? Email the author at {0}.""".format(__email__),
23+
Direct bug reports and feature requests to:
24+
https://github.com/earwig/git-repo-updater.""",
2425
add_help=False)
2526

2627
group_u = parser.add_argument_group("updating repositories")
@@ -41,7 +42,7 @@ def main():
4142
rebase_or_merge.add_argument(
4243
'-r', '--rebase', action="store_true", help="""always rebase upstream
4344
branches instead of following `pull.rebase` and `branch.<name>.rebase`
44-
in git config (like `git pull --rebase=preserve`)""")
45+
in git config (behaves like `git pull --rebase=preserve`)""")
4546
rebase_or_merge.add_argument(
4647
'-m', '--merge', action="store_true", help="""like --rebase, but merge
4748
instead""")
@@ -59,7 +60,7 @@ def main():
5960
'-h', '--help', action="help", help="show this help message and exit")
6061
group_m.add_argument(
6162
'-v', '--version', action="version",
62-
version="gitup version " + __version__)
63+
version="gitup " + __version__)
6364

6465
color_init(autoreset=True)
6566
args = parser.parse_args()

gitup/update.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# -*- coding: utf-8 -*-
22
#
33
# Copyright (C) 2011-2015 Ben Kurtovic <[email protected]>
4-
# See the LICENSE file for details.
4+
# Released under the terms of the MIT License. See LICENSE for details.
55

66
from __future__ import print_function
77

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# -*- coding: utf-8 -*-
22
#
33
# Copyright (C) 2011-2015 Ben Kurtovic <[email protected]>
4-
# See the LICENSE file for details.
4+
# Released under the terms of the MIT License. See LICENSE for details.
55

66
import sys
77

@@ -23,7 +23,7 @@
2323
version = __version__,
2424
author = "Ben Kurtovic",
2525
author_email = "[email protected]",
26-
description = "Easily pull to multiple git repositories at once.",
26+
description = "Easily pull to multiple git repositories at once",
2727
long_description = long_desc,
2828
license = "MIT License",
2929
keywords = "git repository pull update",

0 commit comments

Comments
 (0)