blob: ff228f3b3c6a94e32c5605cfc3750edffba78f35 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#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 = "");
}
|