Skip to content
This repository has been archived by the owner on Jul 5, 2022. It is now read-only.

Copy edits from @jorneorpinel applied for GS:intialize #31

Merged
merged 1 commit into from
Mar 8, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 3 additions & 5 deletions get-started/initialize/intro.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
In this lesson we install and initialize a DVC project.

Our aim is to show how to install DVC for the environment we are currently in
and start a new project with git and DVC.

In this lesson we install DVC, and initialize a DVC project.

Our aim is to show how to install DVC for the environment we are currently in,
and start a new project with git and DVC.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Git 🙂

4 changes: 2 additions & 2 deletions get-started/initialize/step2.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ dvc completion -s bash | sudo tee /etc/bash_completion.d/dvc

`source /etc/bash_completion`{{execute}}

Now you can use `Tab` key to learn available commands and options. Please type
`dvc ` (with space) and press `Tab` key to see a list of possible commands.
Now you can use the `Tab` key to see which commands (and options) are available. Please type
`dvc ` (with space) and press `Tab` twice to see the full command list.

We'll learn all these commands in the upcoming scenarios!
3 changes: 1 addition & 2 deletions get-started/initialize/step3.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,7 @@ The directory is automatically staged on git:

`git status -s`{{execute}}

Some files and folders in `.dvc/` are automatically added to `.gitignore`. This
is to keep large files out of git. We'll use DVC for to manage large files.
Some files and folders in `.dvc/` are automatically added to `.gitignore`.

`cat .dvc/.gitignore`{{execute}}

Expand Down