Browse Source

release/0.3

tags/v0.3^0
Ben Kurtovic 9 years ago
parent
commit
10494e677b
3 changed files with 4 additions and 4 deletions
  1. +1
    -1
      CHANGELOG
  2. +1
    -1
      gitup/__init__.py
  3. +2
    -2
      gitup/script.py

+ 1
- 1
CHANGELOG View File

@@ -1,4 +1,4 @@
v0.3 (unreleased):
v0.3 (released June 7, 2015):

- Added support for Python 3.
- Fixed behavior on bare repositories.


+ 1
- 1
gitup/__init__.py View File

@@ -10,5 +10,5 @@ gitup: the git repository updater
__author__ = "Ben Kurtovic"
__copyright__ = "Copyright (C) 2011-2015 Ben Kurtovic"
__license__ = "MIT License"
__version__ = "0.3.dev0"
__version__ = "0.3"
__email__ = "ben.kurtovic@gmail.com"

+ 2
- 2
gitup/script.py View File

@@ -39,8 +39,8 @@ def main():
'-c', '--current-only', action="store_true", help="""only fetch the
remote tracked by the current branch instead of all remotes""")
group_u.add_argument(
'-f', '--fetch-only', action="store_true", help="""only fetch remotes,
don't try to fast-forward any branches""")
'-f', '--fetch-only', action="store_true",
help="only fetch remotes, don't try to fast-forward any branches")

group_b.add_argument(
'-a', '--add', dest="bookmarks_to_add", nargs="+", metavar="path",


Loading…
Cancel
Save