Lines Matching +full:- +full:- +full:repo
5 from git import Repo
15 '/classes/dma-copy/': 'classes/',
17 '/classes/memory-to-memory-format/': 'classes/',
18 '/classes/inline-to-memory/': 'classes/',
25 parser.add_argument('git_path', type=str, help='Path to the open-gpu-doc repo')
30 # 1. create repo object
32 repo = Repo(repo_path) variable
33 assert not repo.bare
36 sys.exit(-1)
38 # 2. update repo
39 repo.remotes.origin.fetch()
40 repo.git.checkout(branch)
41 repo.git.rebase('origin/' + branch)
48 sys.exit(-1)