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

Feature: adding working with remotes lesson #4202

Merged
Merged
Show file tree
Hide file tree
Changes from 8 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: 8 additions & 0 deletions db/fixtures/lessons/git_lessons.rb
Original file line number Diff line number Diff line change
Expand Up @@ -35,5 +35,13 @@ def git_lessons
github_path: '/git/intermediate_git/using_git_in_the_real_world.md',
identifier_uuid: 'c8b7ccc1-8a16-4545-9d46-b9091d45c6b4',
},

'Working with Remotes' => {
CBID2 marked this conversation as resolved.
Show resolved Hide resolved
title: 'Working with Remotes',
description: "So far, you've been working with remote repositories...",
is_project: false,
github_path: 'git/intermediate_git/working_with_remotes.md',
identifier_uuid: 'create_uuid',
},
}
end
1 change: 1 addition & 0 deletions db/fixtures/paths/full_stack_rails/courses/ruby.rb
Original file line number Diff line number Diff line change
Expand Up @@ -139,6 +139,7 @@

section.add_lessons(
git_lessons.fetch('A Deeper Look at Git'),
git_lessons.fetch('Working with Remotes'),
git_lessons.fetch('Using Git in the Real World'),
)
end
Expand Down