Browse Source

Version bump, doc updates, gitignore update.

tags/v0.2
Ben Kurtovic 10 years ago
parent
commit
290d091e90
4 changed files with 7 additions and 5 deletions
  1. +2
    -0
      .gitignore
  2. +1
    -1
      LICENSE
  3. +2
    -2
      README.md
  4. +2
    -2
      gitup.py

+ 2
- 0
.gitignore View File

@@ -1 +1,3 @@
build/
dist/
*.egg-info/

+ 1
- 1
LICENSE View File

@@ -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
of this software and associated documentation files (the "Software"), to deal


+ 2
- 2
README.md View File

@@ -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:



+ 2
- 2
gitup.py View File

@@ -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")


Loading…
Cancel
Save