A console script that allows you to easily update multiple git repositories at once
Não pode escolher mais do que 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

README.md 3.3 KiB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. __gitup__ (the _git-repo-updater_)
  2. gitup is a tool for updating multiple git repositories at once. It is smart
  3. enough to handle several remotes, dirty working directories, diverged local
  4. branches, detached HEADs, and more. It was originally created to manage a large
  5. collection of projects and deal with sporadic internet access.
  6. gitup should work on OS X, Linux, and Windows. You should have the latest
  7. version of git and either Python 2.7 or Python 3 installed.
  8. # Installation
  9. With [Homebrew](http://brew.sh/):
  10. brew install gitup
  11. ## From source
  12. First:
  13. git clone git://github.com/earwig/git-repo-updater.git
  14. cd git-repo-updater
  15. Then, to install for everyone:
  16. sudo python setup.py install
  17. or for just yourself (make sure you have `~/.local/bin` in your PATH):
  18. python setup.py install --user
  19. Finally, simply delete the `git-repo-updater` directory, and you're done!
  20. __Note:__ If you are using Windows, you may wish to add a macro so you can
  21. invoke gitup in any directory. Note that `C:\python27\` refers to the
  22. directory where Python is installed:
  23. DOSKEY gitup=c:\python27\python.exe c:\python27\Scripts\gitup $*
  24. # Usage
  25. There are two ways to update repos: you can pass them as command arguments,
  26. or save them as "bookmarks".
  27. For example:
  28. gitup ~/repos/foo ~/repos/bar ~/repos/baz
  29. will automatically pull to the `foo`, `bar`, and `baz` git repositories.
  30. Additionally, you can just type:
  31. gitup ~/repos
  32. to automatically update all git repositories in that directory.
  33. To add bookmarks, either of these will work:
  34. gitup --add ~/repos/foo ~/repos/bar ~/repos/baz
  35. gitup --add ~/repos
  36. Then, to update all of your bookmarks, just run gitup without args:
  37. gitup
  38. Delete a bookmark:
  39. gitup --delete ~/repos
  40. View your current bookmarks:
  41. gitup --list
  42. You can mix and match bookmarks and command arguments:
  43. gitup --add ~/repos/foo ~/repos/bar
  44. gitup ~/repos/baz # update 'baz' only
  45. gitup # update 'foo' and 'bar' only
  46. gitup ~/repos/baz --update # update all three!
  47. Update all git repositories in your current directory:
  48. gitup .
  49. You can control how deep gitup will look for repositories in a given directory,
  50. if that directory is not a git repo by itself, with the `--depth` (or `-t`)
  51. option. `--depth 0` will disable recursion entirely, meaning the provided paths
  52. must be repos by themselves. `--depth 1` will descend one level (this is the
  53. old behavior from pre-0.5 gitup). `--depth -1` will recurse indefinitely,
  54. which is not recommended. The default is `--depth 3`.
  55. By default, gitup will fetch all remotes in a repository. Pass `--current-only`
  56. (or `-c`) to make it fetch only the remote tracked by the current branch.
  57. Also by default, gitup will try to fast-forward all branches that have
  58. upstreams configured. It will always skip branches where this is not possible
  59. (e.g. dirty working directory or a merge/rebase is required). Pass
  60. `--fetch-only` (or `-f`) to skip this step and only fetch remotes.
  61. After fetching, gitup will _keep_ remote-tracking branches that no longer exist
  62. upstream. Pass `--prune` (or `-p`) to delete them, or set `fetch.prune` or
  63. `remote.<name>.prune` in your git config to do this by default.
  64. For a full list of all command arguments and abbreviations:
  65. gitup --help