Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

added git-push in docs #472

Merged
merged 4 commits into from
Jul 4, 2019
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
4 changes: 3 additions & 1 deletion static/docs/commands-reference/push.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,9 @@ environments and preserving data versions (input datasets, intermediate results,
models, metrics, etc) remotely (S3, SSH, GCS, etc) are the most common use cases
for these commands.

The `dvc push` command allows one to upload data to remote storage.
The `dvc push` command allows one to upload data to remote storage. It doesn't
save any changes in the code or DVC-files. Those should be saved by using
`git commit` and `git push`.

Under the hood a few actions are taken:

Expand Down
4 changes: 4 additions & 0 deletions static/docs/get-started/share-data.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,10 @@ pulled by your team or you when you need it.
Usually, you run it along with `git commit` and `git push` to save changed
[DVC-files](/doc/user-guide/dvc-file-format) to Git.

The `dvc push` command allows one to upload data to remote storage. It doesn't
save any changes in the code or DVC-files. Those should be saved by using
`git commit` and `git push`.

See `dvc push` for more details and options for this command.
Copy link
Contributor

@jorgeorpinel jorgeorpinel Jul 9, 2019

Choose a reason for hiding this comment

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

Sorry, I was a little distracted last week. I do like the paragraph you guys came up with, but I will remove the paragraph separation above in my active PR for this doc. Thanks

UPDATE: Actually I'll just remove the separate sentence since the link to dvc push is already up there.


> \*As noted in the DVC [configuration](/doc/get-started/configure) chapter, we
Expand Down