Gazler/githug

View on GitHub
levels/find_old_branch.rb

Summary

Maintainability
A
0 mins
Test Coverage
difficulty 4
description "You have been working on a branch but got distracted by a major issue. Switch back to that branch even though you forgot the name of it."

setup do
  init_from_level
  system "git branch -m master"
end

solution do
  return false unless repo.head.name == "solve_world_hunger"
  true
end

hint do
  puts "Ever played with the `git reflog` command?"
end