cli: Fix workflow test
'git pull' in workflow/6-pulling-contributor causes a message to be emitted for some git versions. It asks to configure 'git pull's default action. Use '--ff' as a workaround as a git config file is unsupported, and no environment variable exists for this configuration.
This commit is contained in:
parent
5ccd74aa8a
commit
ad48514ddd
|
|
@ -18,7 +18,7 @@ Now let's checkout `master` and pull the maintainer's changes:
|
||||||
```
|
```
|
||||||
$ git checkout master
|
$ git checkout master
|
||||||
Your branch is up to date with 'rad/master'.
|
Your branch is up to date with 'rad/master'.
|
||||||
$ git pull --all
|
$ git pull --all --ff
|
||||||
Fetching rad
|
Fetching rad
|
||||||
Fetching z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi
|
Fetching z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi
|
||||||
Updating f2de534..f6484e0
|
Updating f2de534..f6484e0
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue