diff --git a/.gitignore b/.gitignore index 567609b..25aacff 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,3 @@ build/ +dist/ +*.egg-info/ diff --git a/LICENSE b/LICENSE index ddae58f..7b13d64 100644 --- a/LICENSE +++ b/LICENSE @@ -1,4 +1,4 @@ -Copyright (c) 2011-2012 Ben Kurtovic +Copyright (c) 2011-2014 Ben Kurtovic Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/README.md b/README.md index a04641b..1c88284 100644 --- a/README.md +++ b/README.md @@ -40,13 +40,13 @@ For example: 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, you can just type: 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: diff --git a/gitup.py b/gitup.py index 62bfcea..208c022 100644 --- a/gitup.py +++ b/gitup.py @@ -13,9 +13,9 @@ import shlex import subprocess __author__ = "Ben Kurtovic" -__copyright__ = "Copyright (c) 2011-2012 Ben Kurtovic" +__copyright__ = "Copyright (c) 2011-2014 Ben Kurtovic" __license__ = "MIT License" -__version__ = "0.1" +__version__ = "0.2.dev" __email__ = "ben.kurtovic@gmail.com" config_filename = os.path.join(os.path.expanduser("~"), ".gitup")