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.
depot_tools/git_cl/git-cl

11 lines
226 B
Python

#!/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:]))