Sha256: 44aed0808c5f8bfa9f1d41b323f7ee557a5be12300a96908af745ed2c17c5bd0

Contents?: true

Size: 382 Bytes

Versions: 5

Compression:

Stored size: 382 Bytes

Contents

# -*- encoding : utf-8 -*-
difficulty 1
description "使⽤短别名git st来查看git状态"

setup do
  repo.init
end

solution do
  valid = false

  config_alias_status = repo.config["alias.st"]

  if "status" == config_alias_status
    valid = true
  end

  valid
end

hint do
  puts "These settings are config settings.  You should run `git help config` if you are stuck."
end

Version data entries

5 entries across 5 versions & 1 rubygems

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