OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:branch_name
(Results
1 - 3
of
3
) sorted by null
/external/chromium_org/tools/git/
for-all-touched-files.py
50
def FilenamesFromGit(
branch_name
, extensions):
52
branch_name
] where
branch_name
can be blank to get a diff of the
60
lines = GitShell('git diff --stat=600,500 %s' %
branch_name
)
75
def ForAllTouchedFiles(
branch_name
, extensions, token, command):
76
"""For each new or modified file output by [git diff
branch_name
],
81
filenames = FilenamesFromGit(
branch_name
, extensions)
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/checkout/scm/
git.py
255
def delete_branch(self,
branch_name
):
256
if self._branch_ref_exists('refs/heads/' +
branch_name
):
257
self._run_git(['branch', '-D',
branch_name
])
302
match = re.search("^\s*(?P<
branch_name
>\S+)\s+merges with remote master$", origin_info, re.MULTILINE)
305
branch = str(match.group("
branch_name
"))
/external/chromium_org/native_client_sdk/src/build_tools/
build_projects.py
182
branch_name
= 'examples'
184
os.path.join(pepperdir,
branch_name
),
Completed in 223 milliseconds