# File lib/flowdock/git.rb, line 45
    def background_post
      pid = Process.fork
      if pid.nil?
        Grit::Git.with_timeout(600) do
          post
        end
      else
        Process.detach(pid) # Parent
      end
    end