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
7ee6ae36
Commit
7ee6ae36
authored
May 08, 2012
by
felix
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
removed unecessary branch addition from switchver
parent
c9fafcec
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
3 deletions
+2
-3
library/git
+2
-3
No files found.
library/git
View file @
7ee6ae36
...
...
@@ -155,7 +155,7 @@ def pull(repo, dest, branch):
cmd
=
subprocess
.
Popen
(
cmd
,
shell
=
True
,
stdout
=
subprocess
.
PIPE
,
stderr
=
subprocess
.
PIPE
)
return
cmd
.
communicate
()
def
switchver
(
version
,
dest
,
branch
):
def
switchver
(
version
,
dest
):
''' once pulled, switch to a particular SHA or tag '''
os
.
chdir
(
dest
)
if
version
!=
'HEAD'
:
...
...
@@ -163,7 +163,6 @@ def switchver(version, dest, branch):
else
:
# is there a better way to do this?
cmd
=
"git rebase origin"
cmd
=
subprocess
.
Popen
(
cmd
,
shell
=
True
,
stdout
=
subprocess
.
PIPE
,
stderr
=
subprocess
.
PIPE
)
(
out
,
err
)
=
cmd
.
communicate
()
return
(
out
,
err
)
...
...
@@ -195,7 +194,7 @@ if out.find('error') != -1:
# switch to version specified regardless of whether
# we cloned or pulled
(
out
,
err
)
=
switchver
(
version
,
dest
,
branch
)
(
out
,
err
)
=
switchver
(
version
,
dest
)
if
err
.
find
(
'error'
)
!=
-
1
:
fail_json
(
out
=
out
,
err
=
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