2
0

dul-receive-pack 1.0 KB

12345678910111213141516171819202122232425262728
  1. #!/usr/bin/python
  2. # dul-receive-pack - git-receive-pack in python
  3. # Copyright (C) 2008 John Carr <john.carr@unrouted.co.uk>
  4. #
  5. # This program is free software; you can redistribute it and/or
  6. # modify it under the terms of the GNU General Public License
  7. # as published by the Free Software Foundation; version 2
  8. # or (at your option) a later version of the License.
  9. #
  10. # This program is distributed in the hope that it will be useful,
  11. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. # GNU General Public License for more details.
  14. #
  15. # You should have received a copy of the GNU General Public License
  16. # along with this program; if not, write to the Free Software
  17. # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
  18. # MA 02110-1301, USA.
  19. from dulwich.porcelain import receive_pack
  20. import os
  21. import sys
  22. if len(sys.argv) < 2:
  23. sys.stderr.write("usage: %s <git-dir>\n" % os.path.basename(sys.argv[0]))
  24. sys.exit(1)
  25. sys.exit(receive_pack(sys.argv[1]))