Sha256: 1524f8c7df8b6f385fa2f31e551deeec096b8f4beb8f288baefb9425c08adb5d

Contents?: true

Size: 338 Bytes

Versions: 5

Compression:

Stored size: 338 Bytes

Contents

# -*- encoding : utf-8 -*-
difficulty 2

description "Add a remote repository called `origin` with the url https://github.com/githug/githug"

setup do
  repo.init
end

solution do
  result = `git remote -v`
  result.include?("https://github.com/githug/githug")
end

hint do
  puts "You can run `git remote --help` for the man pages."
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
mygithug-0.5.6 levels/remote_add.rb
mygithug-0.5.5 levels/remote_add.rb
mygithug-0.5.4 levels/remote_add.rb
mygithug-0.5.3 levels/remote_add.rb
mygithug-0.5.2 levels/remote_add.rb