You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
226 B
Plaintext
11 lines
226 B
Plaintext
14 years ago
|
#!/usr/bin/python
|
||
|
# git-cl -- a git-command for integrating reviews on Rietveld
|
||
|
# Copyright (C) 2008 Evan Martin <martine@danga.com>
|
||
|
|
||
|
import sys
|
||
|
|
||
|
import git_cl
|
||
|
|
||
|
if __name__ == '__main__':
|
||
|
sys.exit(git_cl.main(sys.argv[1:]))
|