Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
A
ansible
Overview
Overview
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
OpenEdx
ansible
Commits
cbff0213
Commit
cbff0213
authored
Nov 08, 2012
by
Michael DeHaan
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #1557 from sfromm/issue1412
Updates to git module: use git-fetch and other changes
parents
42375d14
6aa51a7c
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
56 additions
and
55 deletions
+56
-55
library/git
+56
-55
No files found.
library/git
View file @
cbff0213
...
@@ -63,6 +63,12 @@ examples:
...
@@ -63,6 +63,12 @@ examples:
import
re
import
re
import
tempfile
import
tempfile
def
_run
(
args
):
cmd
=
subprocess
.
Popen
(
args
,
shell
=
True
,
stdout
=
subprocess
.
PIPE
,
stderr
=
subprocess
.
PIPE
)
out
,
err
=
cmd
.
communicate
()
rc
=
cmd
.
returncode
return
(
rc
,
out
,
err
)
def
get_version
(
dest
):
def
get_version
(
dest
):
''' samples the version of the git repo '''
''' samples the version of the git repo '''
os
.
chdir
(
dest
)
os
.
chdir
(
dest
)
...
@@ -71,18 +77,13 @@ def get_version(dest):
...
@@ -71,18 +77,13 @@ def get_version(dest):
sha
=
sha
[
0
]
.
split
()[
1
]
sha
=
sha
[
0
]
.
split
()[
1
]
return
sha
return
sha
def
clone
(
repo
,
dest
):
def
clone
(
repo
,
dest
,
remote
):
''' makes a new git repo if it does not already exist '''
''' makes a new git repo if it does not already exist '''
try
:
try
:
os
.
makedirs
(
os
.
path
.
dirname
(
dest
))
os
.
makedirs
(
os
.
path
.
dirname
(
dest
))
except
:
except
:
pass
pass
cmd
=
"git clone
%
s
%
s"
%
(
repo
,
dest
)
return
_run
(
"git clone -o
%
s
%
s
%
s"
%
(
remote
,
repo
,
dest
))
cmd
=
subprocess
.
Popen
(
cmd
,
shell
=
True
,
stdout
=
subprocess
.
PIPE
,
stderr
=
subprocess
.
PIPE
,
cwd
=
tempfile
.
gettempdir
())
(
out
,
err
)
=
cmd
.
communicate
()
rc
=
cmd
.
returncode
return
(
rc
,
out
,
err
)
def
has_local_mods
(
dest
):
def
has_local_mods
(
dest
):
os
.
chdir
(
dest
)
os
.
chdir
(
dest
)
...
@@ -100,19 +101,13 @@ def reset(module,dest,force):
...
@@ -100,19 +101,13 @@ def reset(module,dest,force):
os
.
chdir
(
dest
)
os
.
chdir
(
dest
)
if
not
force
and
has_local_mods
(
dest
):
if
not
force
and
has_local_mods
(
dest
):
module
.
fail_json
(
msg
=
"Local modifications exist in repository (force=no)."
)
module
.
fail_json
(
msg
=
"Local modifications exist in repository (force=no)."
)
cmd
=
"git reset --hard HEAD"
return
_run
(
"git reset --hard HEAD"
)
cmd
=
subprocess
.
Popen
(
cmd
,
shell
=
True
,
stdout
=
subprocess
.
PIPE
,
stderr
=
subprocess
.
PIPE
)
(
out
,
err
)
=
cmd
.
communicate
()
rc
=
cmd
.
returncode
return
(
rc
,
out
,
err
)
def
get_branches
(
module
,
dest
):
def
get_branches
(
module
,
dest
):
os
.
chdir
(
dest
)
os
.
chdir
(
dest
)
branches
=
[]
branches
=
[]
cmd
=
"git branch -a"
(
rc
,
out
,
err
)
=
_run
(
"git branch -a"
)
cmd
=
subprocess
.
Popen
(
cmd
,
shell
=
True
,
stdout
=
subprocess
.
PIPE
,
stderr
=
subprocess
.
PIPE
)
if
rc
!=
0
:
out
,
err
=
cmd
.
communicate
()
if
cmd
.
returncode
!=
0
:
module
.
fail_json
(
msg
=
"Could not determine branch data - received
%
s"
%
out
)
module
.
fail_json
(
msg
=
"Could not determine branch data - received
%
s"
%
out
)
for
line
in
out
.
split
(
'
\n
'
):
for
line
in
out
.
split
(
'
\n
'
):
branches
.
append
(
line
.
strip
())
branches
.
append
(
line
.
strip
())
...
@@ -154,41 +149,47 @@ def is_not_a_branch(module, dest):
...
@@ -154,41 +149,47 @@ def is_not_a_branch(module, dest):
return
False
return
False
def
get_head_branch
(
module
,
dest
,
remote
):
def
get_head_branch
(
module
,
dest
,
remote
):
os
.
chdir
(
dest
)
'''
head
=
''
Determine what branch HEAD is associated with. This is partly
cmd
=
"git remote show
%
s"
%
remote
taken from lib/ansible/utils/__init__.py. It finds the correct
cmd
=
subprocess
.
Popen
(
cmd
,
shell
=
True
,
stdout
=
subprocess
.
PIPE
,
stderr
=
subprocess
.
PIPE
)
path to .git/HEAD and reads from that file the branch that HEAD is
out
,
err
=
cmd
.
communicate
()
associated with. In the case of a detached HEAD, this will look
if
cmd
.
returncode
!=
0
:
up the branch in .git/refs/remotes/<remote>/HEAD.
module
.
fail_json
(
msg
=
"Could not determine HEAD branch via git remote show"
)
'''
for
line
in
out
.
split
(
'
\n
'
):
repo_path
=
os
.
path
.
join
(
dest
,
'.git'
)
if
'HEAD branch'
in
line
:
# Check if the .git is a file. If it is a file, it means that we are in a submodule structure.
head
=
line
.
split
()[
-
1
]
.
strip
()
if
os
.
path
.
isfile
(
repo_path
):
return
head
try
:
gitdir
=
yaml
.
load
(
open
(
repo_path
))
.
get
(
'gitdir'
)
# There is a posibility the .git file to have an absolute path.
if
os
.
path
.
isabs
(
gitdir
):
repo_path
=
gitdir
else
:
repo_path
=
os
.
path
.
join
(
repo_path
.
split
(
'.git'
)[
0
],
gitdir
)
except
(
IOError
,
AttributeError
):
return
''
# Read .git/HEAD for the name of the branch.
# If we're in a detached HEAD state, look up the branch associated with
# the remote HEAD in .git/refs/remotes/<remote>/HEAD
f
=
open
(
os
.
path
.
join
(
repo_path
,
"HEAD"
))
if
is_not_a_branch
(
module
,
dest
):
f
.
close
()
f
=
open
(
os
.
path
.
join
(
repo_path
,
'refs'
,
'remotes'
,
remote
,
'HEAD'
))
branch
=
f
.
readline
()
.
split
(
'/'
)[
-
1
]
.
rstrip
(
"
\n
"
)
f
.
close
()
return
branch
def
pull
(
module
,
repo
,
dest
,
version
,
remote
):
def
fetch
(
module
,
repo
,
dest
,
version
,
remote
):
''' updates repo from remote sources '''
''' updates repo from remote sources '''
os
.
chdir
(
dest
)
os
.
chdir
(
dest
)
branches
=
get_branches
(
module
,
dest
)
(
rc
,
out1
,
err1
)
=
_run
(
"git fetch
%
s"
%
remote
)
cur_branch
=
''
if
rc
!=
0
:
for
b
in
branches
:
module
.
fail_json
(
msg
=
"Failed to download remote objects and refs"
)
if
b
.
startswith
(
'* '
):
cur_branch
=
b
if
is_local_branch
(
module
,
dest
,
version
)
and
not
is_current_branch
(
module
,
dest
,
version
):
(
rc
,
out
,
err
)
=
switch_version
(
module
,
dest
,
remote
,
version
)
if
rc
!=
0
:
module
.
fail_json
(
msg
=
err
)
if
is_not_a_branch
(
module
,
dest
):
head_branch
=
get_head_branch
(
module
,
dest
,
remote
)
(
rc
,
out
,
err
)
=
switch_version
(
module
,
dest
,
remote
,
head_branch
)
if
rc
!=
0
:
module
.
fail_json
(
msg
=
err
)
cmd
=
"git pull -u
%
s"
%
remote
(
rc
,
out2
,
err2
)
=
_run
(
"git fetch --tags
%
s"
%
remote
)
cmd
=
subprocess
.
Popen
(
cmd
,
shell
=
True
,
stdout
=
subprocess
.
PIPE
,
stderr
=
subprocess
.
PIPE
)
if
rc
!=
0
:
out
,
err
=
cmd
.
communicate
()
module
.
fail_json
(
msg
=
"Failed to download remote objects and refs"
)
rc
=
cmd
.
returncode
return
(
rc
,
out1
+
out2
,
err1
+
err2
)
return
(
rc
,
out
,
err
)
def
switch_version
(
module
,
dest
,
remote
,
version
):
def
switch_version
(
module
,
dest
,
remote
,
version
):
''' once pulled, switch to a particular SHA, tag, or branch '''
''' once pulled, switch to a particular SHA, tag, or branch '''
...
@@ -200,12 +201,12 @@ def switch_version(module, dest, remote, version):
...
@@ -200,12 +201,12 @@ def switch_version(module, dest, remote, version):
else
:
else
:
cmd
=
"git checkout --force
%
s"
%
version
cmd
=
"git checkout --force
%
s"
%
version
else
:
else
:
# is there a better way to do this?
branch
=
get_head_branch
(
module
,
dest
,
remote
)
cmd
=
"git rebase
%
s"
%
remote
(
rc
,
out
,
err
)
=
_run
(
"git checkout --force
%
s"
%
branch
)
cmd
=
subprocess
.
Popen
(
cmd
,
shell
=
True
,
stdout
=
subprocess
.
PIPE
,
stderr
=
subprocess
.
PIPE
)
if
rc
!=
0
:
(
out
,
err
)
=
cmd
.
communicate
(
)
module
.
fail_json
(
msg
=
"Failed to checkout branch
%
s"
%
branch
)
rc
=
cmd
.
returncod
e
cmd
=
"git reset --hard
%
s"
%
remot
e
return
(
rc
,
out
,
err
)
return
_run
(
cmd
)
# ===========================================
# ===========================================
...
@@ -235,7 +236,7 @@ def main():
...
@@ -235,7 +236,7 @@ def main():
before
=
None
before
=
None
local_mods
=
False
local_mods
=
False
if
not
os
.
path
.
exists
(
gitconfig
):
if
not
os
.
path
.
exists
(
gitconfig
):
(
rc
,
out
,
err
)
=
clone
(
repo
,
dest
)
(
rc
,
out
,
err
)
=
clone
(
repo
,
dest
,
remote
)
if
rc
!=
0
:
if
rc
!=
0
:
module
.
fail_json
(
msg
=
err
)
module
.
fail_json
(
msg
=
err
)
else
:
else
:
...
@@ -245,7 +246,7 @@ def main():
...
@@ -245,7 +246,7 @@ def main():
(
rc
,
out
,
err
)
=
reset
(
module
,
dest
,
force
)
(
rc
,
out
,
err
)
=
reset
(
module
,
dest
,
force
)
if
rc
!=
0
:
if
rc
!=
0
:
module
.
fail_json
(
msg
=
err
)
module
.
fail_json
(
msg
=
err
)
(
rc
,
out
,
err
)
=
pull
(
module
,
repo
,
dest
,
version
,
remote
)
(
rc
,
out
,
err
)
=
fetch
(
module
,
repo
,
dest
,
version
,
remote
)
if
rc
!=
0
:
if
rc
!=
0
:
module
.
fail_json
(
msg
=
err
)
module
.
fail_json
(
msg
=
err
)
...
...
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