Home
last modified time | relevance | path

Searched refs:git_dir (Results 1 – 12 of 12) sorted by relevance

/OK3568_Linux_fs/u-boot/tools/patman/
H A Dgitutil.py20 def LogCmd(commit_range, git_dir=None, oneline=False, reverse=False, argument
34 if git_dir:
35 cmd += ['--git-dir', git_dir]
85 def GuessUpstream(git_dir, branch): argument
101 pipe = [LogCmd(branch, git_dir=git_dir, oneline=True, count=100)]
115 def GetUpstream(git_dir, branch): argument
128 remote = command.OutputOneLine('git', '--git-dir', git_dir, 'config',
130 merge = command.OutputOneLine('git', '--git-dir', git_dir, 'config',
133 upstream, msg = GuessUpstream(git_dir, branch)
146 def GetRangeInBranch(git_dir, branch, include_upstream=False): argument
[all …]
H A Dpatchstream.py386 def GetMetaDataForList(commit_range, git_dir=None, count=None, argument
407 git_dir=git_dir)
/OK3568_Linux_fs/yocto/poky/meta/lib/oeqa/utils/
H A Dgit.py19 git_dir = self._run_git_cmd_at(['rev-parse', '--git-dir'], path)
20 git_dir = git_dir if os.path.isabs(git_dir) else os.path.join(path, git_dir)
21 self.git_dir = os.path.realpath(git_dir)
25 self.top_dir = self.git_dir
H A Dgitarchive.py61 tmp_index = os.path.join(repo.git_dir, 'index.oe-git-archive')
130 def gitarchive(data_dir, git_dir, no_create, bare, commit_msg_subject, commit_msg_body, branch_name… argument
135 data_repo = init_git_repo(git_dir, no_create, bare, log)
/OK3568_Linux_fs/u-boot/tools/buildman/
H A Dcontrol.py114 options.git_dir = os.path.join(options.git, '.git')
157 count, msg = gitutil.CountCommitsInRange(options.git_dir,
160 count, msg = gitutil.CountCommitsInBranch(options.git_dir,
211 range_expr = gitutil.GetRangeInBranch(options.git_dir,
213 upstream_commit = gitutil.GetUpstream(options.git_dir,
216 options.git_dir, 1, series=None, allow_overwrite=True)
219 options.git_dir, None, series, allow_overwrite=True)
223 options.git_dir, count, series=None, allow_overwrite=True)
258 builder = Builder(toolchains, output_dir, options.git_dir,
H A Dbuilder.py211 def __init__(self, toolchains, base_dir, git_dir, num_threads, num_jobs, argument
252 self.git_dir = git_dir
1374 git_dir = os.path.join(thread_dir, '.git')
1379 if setup_git and self.git_dir:
1380 src_dir = os.path.abspath(self.git_dir)
1381 if os.path.exists(git_dir):
1382 gitutil.Fetch(git_dir, thread_dir)
H A Dbuilderthread.py186 git_dir = os.path.join(work_dir, '.git')
187 gitutil.Checkout(commit.hash, git_dir, work_dir,
H A Dtest.py301 options.git_dir = None
/OK3568_Linux_fs/yocto/poky/bitbake/bin/
H A Dgit-make-shallow31 git_dir = check_output(['git', 'rev-parse', '--git-dir']).rstrip()
32 shallow_file = os.path.join(git_dir, 'shallow')
57 shrink_repo(git_dir)
160 def shrink_repo(git_dir): argument
165 os.unlink(os.path.join(git_dir, 'objects', 'info', 'alternates'))
/OK3568_Linux_fs/yocto/poky/meta/classes/
H A Dexternalsrc.bbclass209 git_dir = None
212 git_dir = os.path.join(s_dir,
216 if git_dir == top_git_dir:
217 git_dir = None
222 if git_dir is not None:
223 oe_hash_file = os.path.join(git_dir, 'oe-devtool-tree-sha1-%s' % d.getVar('PN'))
226 shutil.copyfile(os.path.join(git_dir, 'index'), tmp_index.name)
/OK3568_Linux_fs/yocto/poky/scripts/lib/resulttool/
H A Dstore.py72 logger.info('Storing test result into git repository %s' % args.git_dir)
74 gitarchive.gitarchive(tempdir, args.git_dir, False, False,
/OK3568_Linux_fs/yocto/poky/scripts/
H A Doe-git-archive106 gitarchive.gitarchive(args.data_dir, args.git_dir, args.no_create, args.bare,