mirror of
https://code.forgejo.org/actions/checkout.git
synced 2024-11-05 18:22:52 +01:00
adr support fetch-refs
This commit is contained in:
parent
f858c22e96
commit
8c9b201842
1 changed files with 8 additions and 0 deletions
|
@ -43,12 +43,18 @@ We want to take this opportunity to make behavioral changes, from v1. This docum
|
||||||
fetch-depth:
|
fetch-depth:
|
||||||
description: 'Number of commits to fetch. 0 indicates all history.'
|
description: 'Number of commits to fetch. 0 indicates all history.'
|
||||||
default: 1
|
default: 1
|
||||||
|
fetch-refs:
|
||||||
|
description: >
|
||||||
|
Additional refs to fetch: `branches`, `tags`, `pr-base`, or `all`.
|
||||||
|
Combinations are also accepted. For example: `branches, tags`
|
||||||
|
default: ''
|
||||||
lfs:
|
lfs:
|
||||||
description: 'Whether to download Git-LFS files'
|
description: 'Whether to download Git-LFS files'
|
||||||
default: false
|
default: false
|
||||||
```
|
```
|
||||||
|
|
||||||
Note:
|
Note:
|
||||||
|
- `fetch-refs` is new
|
||||||
- `persist-credentials` is new
|
- `persist-credentials` is new
|
||||||
- `path` behavior is different (refer [below](#path) for details)
|
- `path` behavior is different (refer [below](#path) for details)
|
||||||
- `submodules` was removed (error if specified; add later if needed)
|
- `submodules` was removed (error if specified; add later if needed)
|
||||||
|
@ -85,6 +91,8 @@ If a SHA isn't available (e.g. multi repo), then fetch only the specified ref wi
|
||||||
|
|
||||||
The input `fetch-depth` can be used to control the depth.
|
The input `fetch-depth` can be used to control the depth.
|
||||||
|
|
||||||
|
The input `fetch-refs` can be used to fetch additional refs.
|
||||||
|
|
||||||
Note:
|
Note:
|
||||||
- Fetching a single commit is supported by Git wire protocol version 2. The git client uses protocol version 0 by default. The desired protocol version can be overridden in the git config or on the fetch command line invocation (`-c protocol.version=2`). We will override on the fetch command line, for transparency.
|
- Fetching a single commit is supported by Git wire protocol version 2. The git client uses protocol version 0 by default. The desired protocol version can be overridden in the git config or on the fetch command line invocation (`-c protocol.version=2`). We will override on the fetch command line, for transparency.
|
||||||
- Git client version 2.18+ (released June 2018) is required for wire protocol version 2.
|
- Git client version 2.18+ (released June 2018) is required for wire protocol version 2.
|
||||||
|
|
Loading…
Reference in a new issue