You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
description "The text editor 'vim' creates files ending in `.swp` (swap files) for all files that are currently open. We don't want them creeping into the repository. Make this repository ignore those swap files which are ending in `.swp`."
setup do
repo.init
FileUtils.touch("README.swp")
system "git branch -m master"
file = File.open(".git/config", "w") do |file|
file.puts "[core]\nexcludesfile="
end
end
solution do
valid = false
File.open(".gitignore", "r") do |file|
while line = file.gets
if line.chomp == "*.swp"
valid = true
end
end
end
valid
end
hint do
puts "You may have noticed there is a file named `.gitignore` in the repository."