blob: 4bf34b76f8dc20440870ac8b7b0f6b95e5c9d6bd (
plain)
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 = "");
}
|