A console script that allows you to easily update multiple git repositories at once
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

13 лет назад
13 лет назад
13 лет назад
13 лет назад
13 лет назад
13 лет назад
13 лет назад
13 лет назад
13 лет назад
13 лет назад
13 лет назад
13 лет назад
13 лет назад
13 лет назад
13 лет назад
13 лет назад
13 лет назад
13 лет назад
10 лет назад
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  1. __gitup__ (the _git-repo-updater_)
  2. gitup is a tool designed to update a large number of git repositories at once.
  3. It is smart enough to handle multiple remotes, branches, dirty working
  4. directories, and more, hopefully providing a great way to get everything
  5. up-to-date for short periods of internet access between long periods of none.
  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 a bookmark (or 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. By default, gitup will fetch all remotes in a repository. Pass `--current-only`
  50. (or `-c`) to make it fetch _only_ the remote tracked by the current branch.
  51. Also by default, gitup will try to fast-forward all branches that have
  52. upstreams configured. It will always skip branches where this is not possible
  53. (e.g. dirty working directory or a merge/rebase is required). Pass
  54. `--fetch-only` (or `-f`) to only fetch remotes.
  55. After fetching, gitup will _keep_ remote-tracking branches that no longer exist
  56. upstream. Pass `--prune` (or `-p`) to delete them, or set `fetch.prune` or
  57. `remote.<name>.prune` in git config to do this by default.
  58. For a full list of all command arguments and abbreviations:
  59. gitup --help
  60. Finally, all paths can be either absolute (e.g. `/path/to/repo`) or relative
  61. (e.g. `../my/repo`).