-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgitw
executable file
·37 lines (34 loc) · 1.81 KB
/
gitw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
#!/usr/bin/env bash
#*******************************************************************************
# Copyright (c) 2020 Eclipse Foundation and others.
# This program and the accompanying materials are made available
# under the terms of the Eclipse Public License 2.0
# which is available at http://www.eclipse.org/legal/epl-v20.html,
# or the MIT License which is available at https://opensource.org/licenses/MIT.
# SPDX-License-Identifier: EPL-2.0 OR MIT
#*******************************************************************************
# shellcheck disable=SC1090
. "$(dirname "$(readlink -f "${BASH_SOURCE[0]}")")/_bootstrap.shsource"
sparsecheckout() {
local remote="${1}"
local path="${2:-.}"
local branch="${3:-master}"
if [[ -d "${path}" ]]; then
INFO "Fetching the tip of the branch '${branch}' from ${remote}..."
git -C "${path}" fetch -f --no-tags --depth 1 "${remote}" "+refs/heads/${branch}:refs/remotes/origin/${branch}" |& TRACE
INFO "Checking out branch ${branch}..."
git -C "${path}" checkout --no-progress -f "$(git -C "${path}" rev-parse "refs/remotes/origin/${branch}")" |& TRACE
else
git init "${path}" |& TRACE
INFO "Fetching the tip of the branch '${branch}' from ${remote}..."
git -C "${path}" fetch --no-tags --depth 1 "${remote}" "+refs/heads/${branch}:refs/remotes/origin/${branch}" |& TRACE
git -C "${path}" config remote.origin.url "${remote}" |& TRACE
git -C "${path}" config --add remote.origin.fetch "+refs/heads/${branch}:refs/remotes/origin/${branch}" |& TRACE
git -C "${path}" config core.sparsecheckout true |& TRACE
git -C "${path}" config advice.detachedHead false |& TRACE
INFO "Checking out branch ${branch}..."
git -C "${path}" checkout --no-progress -f "$(git -C "${path}" rev-parse "refs/remotes/origin/${branch}")" |& TRACE
fi
}
# shellcheck disable=SC2068
$@