Sha256: 6383259d669a89b1a153658ba5d322bc211917956e733e171b3219b6a8a4aa9a
Contents?: true
Size: 785 Bytes
Versions: 6
Compression:
Stored size: 785 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
6 entries across 6 versions & 1 rubygems
Version | Path |
---|---|
githug-0.4.3 | levels/squash.rb |
githug-0.4.2 | levels/squash.rb |
githug-0.4.1 | levels/squash.rb |
githug-0.4.0 | levels/squash.rb |
githug-0.3.5 | levels/squash.rb |
githug-0.3.4 | levels/squash.rb |