pub fn stat(path: impl AsRef<Path>) -> Result<Remote>
Find out what the GitHub url, user and repo are for a directory
3fn main() { 4 let res = github_local_remote::stat(".").unwrap(); 5 println!("result {:?}", res); 6}