mirror of
https://github.com/cpina/github-action-push-to-another-repository.git
synced 2024-12-21 23:56:09 -07:00
Change indentation, add comment, use "git switch -c" instead of "git checkout -b"
This commit is contained in:
parent
33585ea95a
commit
cbe757f8d8
|
@ -72,11 +72,14 @@ git config --global user.name "$USER_NAME"
|
|||
{
|
||||
git clone --single-branch --depth 1 --branch "$TARGET_BRANCH" "$GIT_CMD_REPOSITORY" "$CLONE_DIR"
|
||||
} || {
|
||||
if [ "$CREATE_TARGET_BRANCH_IF_NEEDED" = 'true' ] ; then
|
||||
git clone --single-branch --depth 1 "$GIT_CMD_REPOSITORY" "$CLONE_DIR"
|
||||
else
|
||||
false
|
||||
fi
|
||||
if [ "$CREATE_TARGET_BRANCH_IF_NEEDED" = "true" ]
|
||||
then
|
||||
# Default branch of the repository is cloned. Later on the required branch
|
||||
# will be created
|
||||
git clone --single-branch --depth 1 "$GIT_CMD_REPOSITORY" "$CLONE_DIR"
|
||||
else
|
||||
false
|
||||
fi
|
||||
} || {
|
||||
echo "::error::Could not clone the destination repository. Command:"
|
||||
echo "::error::git clone --single-branch --branch $TARGET_BRANCH $GIT_CMD_REPOSITORY $CLONE_DIR"
|
||||
|
@ -145,8 +148,9 @@ echo "[+] Set directory is safe ($CLONE_DIR)"
|
|||
git config --global --add safe.directory "$CLONE_DIR"
|
||||
|
||||
|
||||
if [ "$CREATE_TARGET_BRANCH_IF_NEEDED" = 'true' ] ; then
|
||||
git checkout -b "$TARGET_BRANCH"
|
||||
if [ "$CREATE_TARGET_BRANCH_IF_NEEDED" = "true" ]
|
||||
then
|
||||
git switch -c "$TARGET_BRANCH"
|
||||
fi
|
||||
|
||||
echo "[+] Adding git commit"
|
||||
|
|
Loading…
Reference in New Issue
Block a user