1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
#pragma once #include <string> #include "ref.hh" namespace nix { class Store; Path exportGit(ref<Store> store, const std::string & uri, const std::string & ref, const std::string & rev = "", const std::string & name = ""); }