@@ -1 +1,3 @@ | |||||
build/ | build/ | ||||
dist/ | |||||
*.egg-info/ |
@@ -1,4 +1,4 @@ | |||||
Copyright (c) 2011-2012 Ben Kurtovic <ben.kurtovic@gmail.com> | |||||
Copyright (c) 2011-2014 Ben Kurtovic <ben.kurtovic@gmail.com> | |||||
Permission is hereby granted, free of charge, to any person obtaining a copy | Permission is hereby granted, free of charge, to any person obtaining a copy | ||||
of this software and associated documentation files (the "Software"), to deal | of this software and associated documentation files (the "Software"), to deal | ||||
@@ -40,13 +40,13 @@ For example: | |||||
gitup ~/repos/foo ~/repos/bar ~/repos/baz | gitup ~/repos/foo ~/repos/bar ~/repos/baz | ||||
...will automatically pull to the `foo`, `bar`, and `baz` git repositories if | |||||
will automatically pull to the `foo`, `bar`, and `baz` git repositories if | |||||
their working directories are clean (to avoid merge conflicts). Additionally, | their working directories are clean (to avoid merge conflicts). Additionally, | ||||
you can just type: | you can just type: | ||||
gitup ~/repos | gitup ~/repos | ||||
...to automatically update all git repositories in that directory. | |||||
to automatically update all git repositories in that directory. | |||||
To add a bookmark (or bookmarks), either of these will work: | To add a bookmark (or bookmarks), either of these will work: | ||||
@@ -13,9 +13,9 @@ import shlex | |||||
import subprocess | import subprocess | ||||
__author__ = "Ben Kurtovic" | __author__ = "Ben Kurtovic" | ||||
__copyright__ = "Copyright (c) 2011-2012 Ben Kurtovic" | |||||
__copyright__ = "Copyright (c) 2011-2014 Ben Kurtovic" | |||||
__license__ = "MIT License" | __license__ = "MIT License" | ||||
__version__ = "0.1" | |||||
__version__ = "0.2.dev" | |||||
__email__ = "ben.kurtovic@gmail.com" | __email__ = "ben.kurtovic@gmail.com" | ||||
config_filename = os.path.join(os.path.expanduser("~"), ".gitup") | config_filename = os.path.join(os.path.expanduser("~"), ".gitup") | ||||