Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
G
git-repo
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
linux-tools
git-repo
Commits
374ae250
Commit
374ae250
authored
Aug 08, 2013
by
Matthias Putz
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fixes #2, conflict with (existing) repo config files of original repo
parent
8bd509b4
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
5 additions
and
5 deletions
+5
-5
NOTES.md
NOTES.md
+1
-0
git_config.py
git_config.py
+1
-1
main.py
main.py
+0
-1
repo
repo
+1
-1
sync.py
subcmds/sync.py
+2
-2
No files found.
NOTES.md
View file @
374ae250
...
...
@@ -20,6 +20,7 @@ Features:
*
enable debugging: --debug
*
set debug host: --debug-host=172.31.0.250
(default localhost, uses port is 19499)
*
in debugger startup code: set path mappings (! elsewise breakpoints not found)
*
using local git-repo (in $GIT_REPO; branch 'dev') and local git repositories (in $REPOS)
$GIT_REPO/repo init -u $REPOS/manifest/ --no-repo-verify --repo-branch=dev
*
Tracing: set environment variable
...
...
git_config.py
View file @
374ae250
...
...
@@ -81,7 +81,7 @@ class GitConfig(object):
if
pickleFile
is
None
:
self
.
_pickle
=
os
.
path
.
join
(
os
.
path
.
dirname
(
self
.
file
),
'.repopickle_'
+
os
.
path
.
basename
(
self
.
file
))
'.repopickle_
esrlabs_
'
+
os
.
path
.
basename
(
self
.
file
))
else
:
self
.
_pickle
=
pickleFile
...
...
main.py
View file @
374ae250
...
...
@@ -422,7 +422,6 @@ def _Debug(host, env):
import
pydevd
pydevd
.
settrace
(
host
,
port
=
19499
,
stdoutToServer
=
True
,
stderrToServer
=
True
)
print
(
"hey"
)
except
ImportError
:
traceback
.
print_exc
(
file
=
sys
.
stdout
)
...
...
repo
View file @
374ae250
...
...
@@ -93,7 +93,7 @@ import subprocess
import
urllib.request
import
urllib.error
home_dot_repo
=
os
.
path
.
expanduser
(
'~/.repoconfig'
)
home_dot_repo
=
os
.
path
.
expanduser
(
'~/.repoconfig
_esrlabs
'
)
gpg_dir
=
os
.
path
.
join
(
home_dot_repo
,
'gnupg'
)
extra_args
=
[]
...
...
subcmds/sync.py
View file @
374ae250
...
...
@@ -674,7 +674,7 @@ def _PostRepoFetch(rp, no_repo_verify=False, verbose=False):
def
_VerifyTag
(
project
):
gpg_dir
=
os
.
path
.
expanduser
(
'~/.repoconfig/gnupg'
)
gpg_dir
=
os
.
path
.
expanduser
(
'~/.repoconfig
_esrlabs
/gnupg'
)
if
not
os
.
path
.
exists
(
gpg_dir
):
print
(
'warning: GnuPG was not available during last "repo init"
\n
'
'warning: Cannot automatically authenticate repo."""'
,
...
...
@@ -725,7 +725,7 @@ class _FetchTimes(object):
_ALPHA
=
0.5
def
__init__
(
self
,
manifest
):
self
.
_path
=
os
.
path
.
join
(
manifest
.
repodir
,
'.repopickle_fetchtimes'
)
self
.
_path
=
os
.
path
.
join
(
manifest
.
repodir
,
'.repopickle_
esrlabs_
fetchtimes'
)
self
.
_times
=
None
self
.
_seen
=
set
()
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment