Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
freedombone
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Context Sensitive Group
freedombone
Commits
8a42d757
Unverified
Commit
8a42d757
authored
8 years ago
by
Bob Mottram
Browse files
Options
Downloads
Patches
Plain Diff
git utility script
parent
6f5f81d4
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/freedombone-utils-git
+134
-0
134 additions, 0 deletions
src/freedombone-utils-git
with
134 additions
and
0 deletions
src/freedombone-utils-git
0 → 100755
+
134
−
0
View file @
8a42d757
#!/bin/bash
#
# .---. . .
# | | |
# |--- .--. .-. .-. .-.| .-. .--.--. |.-. .-. .--. .-.
# | | (.-' (.-' ( | ( )| | | | )( )| | (.-'
# ' ' --' --' -' - -' ' ' -' -' -' ' - --'
#
# Freedom in the Cloud
#
# Useful git functions
#
# License
# =======
#
# Copyright (C) 2014-2016 Bob Mottram <bob@robotics.uk.to>
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
NO_OF_ARGS
=
$#
PROJECT_NAME
=
'freedombone'
export
TEXTDOMAIN
=
$PROJECT_NAME
-utils-git
export
TEXTDOMAINDIR
=
"/usr/share/locale"
# An optional configuration file which overrides some of these variables
CONFIGURATION_FILE
=
"
${
PROJECT_NAME
}
.cfg"
if
[
-f
~/
${
PROJECT_NAME
}
.cfg
]
;
then
CONFIGURATION_FILE
=
~/
${
PROJECT_NAME
}
.cfg
fi
# friends repo mirrors
FRIENDS_MIRRORS_SERVER
=
FRIENDS_MIRRORS_PASSWORD
=
FRIENDS_MIRRORS_SSH_PORT
=
function
get_friends_servers
{
if
[
-f
$CONFIGURATION_FILE
]
;
then
if
grep
-q
"FRIENDS_MIRRORS_SERVER"
$CONFIGURATION_FILE
;
then
FRIENDS_MIRRORS_SERVER
=
$(
grep
"FRIENDS_MIRRORS_SERVER"
$CONFIGURATION_FILE
|
awk
-F
'='
'{print $2}'
)
fi
if
grep
-q
"FRIENDS_MIRRORS_PASSWORD"
$CONFIGURATION_FILE
;
then
FRIENDS_MIRRORS_PASSWORD
=
$(
grep
"FRIENDS_MIRRORS_PASSWORD"
$CONFIGURATION_FILE
|
awk
-F
'='
'{print $2}'
)
fi
if
grep
-q
"FRIENDS_MIRRORS_SSH_PORT"
$CONFIGURATION_FILE
;
then
FRIENDS_MIRRORS_SSH_PORT
=
$(
grep
"FRIENDS_MIRRORS_SSH_PORT"
$CONFIGURATION_FILE
|
awk
-F
'='
'{print $2}'
)
fi
fi
if
[
!
$FRIENDS_MIRRORS_SERVER
]
;
then
echo
"1"
return
fi
if
[
${#
FRIENDS_MIRRORS_SERVER
}
-lt
2
]
;
then
echo
"1"
return
fi
echo
"0"
}
function
git_clone
{
repo_url
=
"
$1
"
destination_dir
=
"
$2
"
if
[[
"
$repo_url
"
==
"ssh:"
*
]]
;
then
retval
=
$(
get_friends_servers
)
if
[[
$retval
==
"0"
]]
;
then
if
[
"
${
FRIENDS_MIRRORS_SERVER
}
"
]
;
then
if
[
${#
FRIENDS_MIRRORS_SERVER
}
-gt
2
]
;
then
if
[
"
$FRIENDS_MIRRORS_PASSWORD
"
]
;
then
if
[
${#
FRIENDS_MIRRORS_PASSWORD
}
-gt
2
]
;
then
echo
"sshpass -p
\"
$FRIENDS_MIRRORS_PASSWORD
\"
git clone
$repo_url
$destination_dir
"
sshpass
-p
"
$FRIENDS_MIRRORS_PASSWORD
"
git clone
"
$repo_url
"
"
$destination_dir
"
return
fi
fi
fi
fi
fi
fi
echo
"git clone
$repo_url
$destination_dir
"
git clone
"
$repo_url
"
"
$destination_dir
"
}
function
git_pull
{
if
[
!
$1
]
;
then
echo
$'git_pull no repo specified'
fi
git stash
git remote set-url origin
$1
git checkout master
get_friends_servers
if
[
"
${
FRIENDS_MIRRORS_SERVER
}
"
]
;
then
if
[
${#
FRIENDS_MIRRORS_SERVER
}
-gt
2
]
;
then
if
[
"
$FRIENDS_MIRRORS_PASSWORD
"
]
;
then
if
[
${#
FRIENDS_MIRRORS_PASSWORD
}
-gt
2
]
;
then
sshpass
-p
"
$FRIENDS_MIRRORS_PASSWORD
"
git pull
if
[
$2
]
;
then
git checkout
$2
-b
$2
fi
return
fi
fi
fi
fi
git pull
if
[
$2
]
;
then
# delete any existing branch
git branch
-D
$2
# check out the new branch
git checkout
$2
-b
$2
if
[
!
"
$?
"
=
"0"
]
;
then
echo
$"Unable to checkout
$1
$2
"
exit
72357
fi
fi
}
# NOTE: deliberately no exit 0
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment