Sha256: 7280f6f86f31e9d6bf02433f7a227ef79a7210410cf78e58a51e1c643e1938b5
Contents?: true
Size: 1.03 KB
Versions: 1
Compression:
Stored size: 1.03 KB
Contents
difficulty 4 description "You've made changes within a single file that belong to two different features, but neither of the changes are yet staged. Stage only the changes belonging to the first feature." setup do repo.init File.open("feature.rb", "w") do |file| file.puts("this is the class of my feature") end system "git branch -m master" repo.add("feature.rb") repo.commit_all("Added initial feature file") File.open("feature.rb", "a") do |file| file.puts("This change belongs to the first feature") end File.open("feature.rb", "a") do |file| file.puts("This change belongs to the second feature") end end solution do `git diff --no-ext-diff --no-color --staged` =~ /\+This change belongs to the first feature/ && `git diff --no-ext-diff --no-color` =~ /\+This change belongs to the second feature/ end hint do puts "You might want to try to manipulate the hunks of the diff to choose which lines of the diff get staged. Read about the flags which can be passed to the `add` command; `git --help add`." end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
githug-0.5.1 | levels/stage_lines.rb |