0% found this document useful (0 votes)
12 views2 pages

2 Checkout Repository

The document outlines the steps taken to run a GitHub Actions workflow, specifically focusing on the checkout process of a repository. It includes commands for configuring Git settings, initializing the repository, and fetching the latest changes from the remote repository. The process also involves setting up authentication and managing the Git configuration for safe directory access.

Uploaded by

freevpn537
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
12 views2 pages

2 Checkout Repository

The document outlines the steps taken to run a GitHub Actions workflow, specifically focusing on the checkout process of a repository. It includes commands for configuring Git settings, initializing the repository, and fetching the latest changes from the remote repository. The process also involves setting up authentication and managing the Git configuration for safe directory access.

Uploaded by

freevpn537
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 2

2025-04-15T12:07:47.

2274124Z ##[group]Run actions/checkout@v4


2025-04-15T12:07:47.2275047Z with:
2025-04-15T12:07:47.2275696Z token: ***
2025-04-15T12:07:47.2276179Z persist-credentials: false
2025-04-15T12:07:47.2276761Z repository: victorgeel/key***
2025-04-15T12:07:47.2277316Z ssh-strict: true
2025-04-15T12:07:47.2277785Z ssh-user: git
2025-04-15T12:07:47.2278507Z clean: true
2025-04-15T12:07:47.2279011Z sparse-checkout-cone-mode: true
2025-04-15T12:07:47.2279573Z fetch-depth: 1
2025-04-15T12:07:47.2280026Z fetch-tags: false
2025-04-15T12:07:47.2280497Z show-progress: true
2025-04-15T12:07:47.2280969Z lfs: false
2025-04-15T12:07:47.2281407Z submodules: false
2025-04-15T12:07:47.2281877Z set-safe-directory: true
2025-04-15T12:07:47.2282667Z ##[endgroup]
2025-04-15T12:07:47.4144001Z Syncing repository: victorgeel/key***
2025-04-15T12:07:47.4146424Z ##[group]Getting Git version info
2025-04-15T12:07:47.4147373Z Working directory is '/home/runner/work/key***/key***'
2025-04-15T12:07:47.4151349Z [command]/usr/bin/git version
2025-04-15T12:07:47.4169846Z git version 2.49.0
2025-04-15T12:07:47.4201655Z ##[endgroup]
2025-04-15T12:07:47.4220830Z Temporarily overriding
HOME='/home/runner/work/_temp/c75cc3cd-4dbc-45ca-9596-6cad0d179d68' before making
global git config changes
2025-04-15T12:07:47.4233904Z Adding repository directory to the temporary git
global config as a safe directory
2025-04-15T12:07:47.4237623Z [command]/usr/bin/git config --global --add
safe.directory /home/runner/work/key***/key***
2025-04-15T12:07:47.4277335Z Deleting the contents of
'/home/runner/work/key***/key***'
2025-04-15T12:07:47.4283923Z ##[group]Initializing the repository
2025-04-15T12:07:47.4288925Z [command]/usr/bin/git init
/home/runner/work/key***/key***
2025-04-15T12:07:47.4357810Z hint: Using 'master' as the name for the initial
branch. This default branch name
2025-04-15T12:07:47.4362483Z hint: is subject to change. To configure the initial
branch name to use in all
2025-04-15T12:07:47.4364975Z hint: of your new repositories, which will suppress
this warning, call:
2025-04-15T12:07:47.4368000Z hint:
2025-04-15T12:07:47.4369349Z hint: git config --global init.defaultBranch <name>
2025-04-15T12:07:47.4370525Z hint:
2025-04-15T12:07:47.4371655Z hint: Names commonly chosen instead of 'master' are
'main', 'trunk' and
2025-04-15T12:07:47.4373398Z hint: 'development'. The just-created branch can be
renamed via this command:
2025-04-15T12:07:47.4374808Z hint:
2025-04-15T12:07:47.4375583Z hint: git branch -m <name>
2025-04-15T12:07:47.4376977Z Initialized empty Git repository in
/home/runner/work/key***/key***/.git/
2025-04-15T12:07:47.4382271Z [command]/usr/bin/git remote add origin
https://github.com/victorgeel/key***
2025-04-15T12:07:47.4431191Z ##[endgroup]
2025-04-15T12:07:47.4432564Z ##[group]Disabling automatic garbage collection
2025-04-15T12:07:47.4435673Z [command]/usr/bin/git config --local gc.auto 0
2025-04-15T12:07:47.4463034Z ##[endgroup]
2025-04-15T12:07:47.4464367Z ##[group]Setting up auth
2025-04-15T12:07:47.4474552Z [command]/usr/bin/git config --local --name-only --
get-regexp core\.sshCommand
2025-04-15T12:07:47.4511886Z [command]/usr/bin/git submodule foreach --recursive sh
-c "git config --local --name-only --get-regexp 'core\.sshCommand' && git config --
local --unset-all 'core.sshCommand' || :"
2025-04-15T12:07:47.4811801Z [command]/usr/bin/git config --local --name-only --
get-regexp http\.https\:\/\/github\.com\/\.extraheader
2025-04-15T12:07:47.4848548Z [command]/usr/bin/git submodule foreach --recursive sh
-c "git config --local --name-only --get-regexp
'http\.https\:\/\/github\.com\/\.extraheader' && git config --local --unset-all
'http.https://github.com/.extraheader' || :"
2025-04-15T12:07:47.5093189Z [command]/usr/bin/git config --local
http.https://github.com/.extraheader AUTHORIZATION: basic ***
2025-04-15T12:07:47.5141484Z ##[endgroup]
2025-04-15T12:07:47.5144378Z ##[group]Fetching the repository
2025-04-15T12:07:47.5153331Z [command]/usr/bin/git -c protocol.version=2 fetch --
no-tags --prune --no-recurse-submodules --depth=1 origin
+686f6c7cc648d567663cd829865a79897e7ead8d:refs/remotes/origin/main
2025-04-15T12:07:47.9193626Z From https://github.com/victorgeel/key***
2025-04-15T12:07:47.9196020Z * [new ref]
686f6c7cc648d567663cd829865a79897e7ead8d -> origin/main
2025-04-15T12:07:47.9231518Z ##[endgroup]
2025-04-15T12:07:47.9234492Z ##[group]Determining the checkout info
2025-04-15T12:07:47.9236930Z ##[endgroup]
2025-04-15T12:07:47.9242069Z [command]/usr/bin/git sparse-checkout disable
2025-04-15T12:07:47.9284314Z [command]/usr/bin/git config --local --unset-all
extensions.worktreeConfig
2025-04-15T12:07:47.9320416Z ##[group]Checking out the ref
2025-04-15T12:07:47.9322872Z [command]/usr/bin/git checkout --progress --force -B
main refs/remotes/origin/main
2025-04-15T12:07:47.9367383Z Switched to a new branch 'main'
2025-04-15T12:07:47.9373608Z branch 'main' set up to track 'origin/main'.
2025-04-15T12:07:47.9380386Z ##[endgroup]
2025-04-15T12:07:47.9418001Z [command]/usr/bin/git log -1 --format=%H
2025-04-15T12:07:47.9442516Z 686f6c7cc648d567663cd829865a79897e7ead8d
2025-04-15T12:07:47.9456547Z ##[group]Removing auth
2025-04-15T12:07:47.9461850Z [command]/usr/bin/git config --local --name-only --
get-regexp core\.sshCommand
2025-04-15T12:07:47.9496455Z [command]/usr/bin/git submodule foreach --recursive sh
-c "git config --local --name-only --get-regexp 'core\.sshCommand' && git config --
local --unset-all 'core.sshCommand' || :"
2025-04-15T12:07:47.9733205Z [command]/usr/bin/git config --local --name-only --
get-regexp http\.https\:\/\/github\.com\/\.extraheader
2025-04-15T12:07:47.9756430Z http.https://github.com/.extraheader
2025-04-15T12:07:47.9771836Z [command]/usr/bin/git config --local --unset-all
http.https://github.com/.extraheader
2025-04-15T12:07:47.9806608Z [command]/usr/bin/git submodule foreach --recursive sh
-c "git config --local --name-only --get-regexp
'http\.https\:\/\/github\.com\/\.extraheader' && git config --local --unset-all
'http.https://github.com/.extraheader' || :"
2025-04-15T12:07:48.0041115Z ##[endgroup]

You might also like

pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy