Sha256: 80264f06e2d9de1bef27074bf88d5a677f1f2f6b136dd9718c861f2e8b7b77a5

Contents?: true

Size: 441 Bytes

Versions: 1

Compression:

Stored size: 441 Bytes

Contents

difficulty 2

description "We are using a git rebase workflow and the feature branch is ready to go into master. Let's rebase the master branch into our feature branch."

setup do
  init_from_level
end

solution do
  return repo.commits('feature').last.id_abbrev != "ed0fdcf" &&
    repo.commits("feature").map(&:message) == ['add feature','add content','init commit']
end

hint do
  puts "You want to research the `git rebase` command"
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
githug-0.4.3 levels/rebase.rb