Fork channel

Create a new channel as a copy of main.

Rename channel

Rename main to:

Delete channel

Delete main? This cannot be undone.

0190-next_stash_filename
next_stash_filename = function(root)
	local i = 1
	while true do
		local filename = root..'.'..tostring(i)
		if not file_exists(Stash_directory..filename) then
			return filename
		end
		i = i+1
	end
end