From 574281d34cf49767d4b75b691c4c4f4655e0c93f Mon Sep 17 00:00:00 2001 From: eric sciple Date: Thu, 19 Mar 2020 22:17:25 -0400 Subject: [PATCH] update readme --- README.md | 16 +--------------- 1 file changed, 1 insertion(+), 15 deletions(-) diff --git a/README.md b/README.md index 998efcdc3..646065dbe 100644 --- a/README.md +++ b/README.md @@ -18,6 +18,7 @@ When Git 2.18 or higher is not in your PATH, falls back to the REST API to downl - Fetches only a single commit by default - Script authenticated git commands - Auth token persisted in the local git config +- Supports SSH - Creates a local branch - No longer detached HEAD when checking out a branch - Improved layout @@ -116,7 +117,6 @@ Refer [here](https://github.com/actions/checkout/blob/v1/README.md) for previous - [Checkout multiple repos (private)](#Checkout-multiple-repos-private) - [Checkout pull request HEAD commit instead of merge commit](#Checkout-pull-request-HEAD-commit-instead-of-merge-commit) - [Checkout pull request on closed event](#Checkout-pull-request-on-closed-event) -- [Checkout submodules](#Checkout-submodules) - [Fetch all tags](#Fetch-all-tags) - [Fetch all branches](#Fetch-all-branches) - [Fetch all history for all tags and branches](#Fetch-all-history-for-all-tags-and-branches) @@ -207,20 +207,6 @@ jobs: - uses: actions/checkout@v2 ``` -## Checkout submodules - -```yaml -- uses: actions/checkout@v2 -- name: Checkout submodules - shell: bash - run: | - # If your submodules are configured to use SSH instead of HTTPS please uncomment the following line - # git config --global url."https://github.com/".insteadOf "git@github.com:" - auth_header="$(git config --local --get http.https://github.com/.extraheader)" - git submodule sync --recursive - git -c "http.extraheader=$auth_header" -c protocol.version=2 submodule update --init --force --recursive --depth=1 -``` - ## Fetch all tags ```yaml