This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Main{ | |
public static void main(String args[]){ | |
String name = "Saito"; | |
String password = "a1c2bf1890eb"; | |
String url = "http://localhost:9292/Saito/simba.git"; | |
// credentials | |
CredentialsProvider cp = new UsernamePasswordCredentialsProvider(name, password); | |
// clone | |
File dir = new File("/tmp/abc"); |