Sha256: 8e21793f8fdd7baab60cc8c340dc9762447c6248ceaf22006b96a840bd332d0b
Contents?: true
Size: 786 Bytes
Versions: 1
Compression:
Stored size: 786 Bytes
Contents
difficulty 4 description "You have committed several times but would like all those changes to be one commit." setup do repo.init FileUtils.touch(".hidden") repo.add(".hidden") repo.commit_all("Initial Commit") FileUtils.touch("README") repo.add("README") repo.commit_all("Adding README") File.open("README", 'w') { |f| f.write("hey there") } repo.add("README") repo.commit_all("Updating README") File.open("README", 'a') { |f| f.write("\nAdding some more text") } repo.add("README") repo.commit_all("Updating README") File.open("README", 'a') { |f| f.write("\neven more text") } repo.add("README") repo.commit_all("Updating README") end solution do repo.commits.length == 2 end hint do puts "Take a look the `-i` flag of the rebase command." end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
githug-0.4.4 | levels/squash.rb |