Search in sources :

Example 1 with FileRepository

use of org.eclipse.jgit.internal.storage.file.FileRepository in project Aspose.Imaging-for-Java by aspose-imaging.

the class GitHelper method syncRepository.

public static void syncRepository(String localPath, String remotePath) throws Exception {
    Repository localRepo;
    try {
        localRepo = new FileRepository(localPath + "/.git");
        Git git = new Git(localRepo);
        AsposeConstants.println("Syncronizing Repository [" + remotePath + "]....");
        // Pull the changes
        try {
            git.pull().call();
        } catch (Exception exPull) {
            // If pull failed. Throw this exception to caller
            {
                AsposeConstants.println("Pull failed.");
            }
            // throw it
            throw exPull;
        }
    } catch (Exception ex) {
        throw new Exception("Could not update Repository from Github. Error: " + ex.getMessage());
    }
}
Also used : FileRepository(org.eclipse.jgit.internal.storage.file.FileRepository) FileRepository(org.eclipse.jgit.internal.storage.file.FileRepository) Repository(org.eclipse.jgit.lib.Repository) Git(org.eclipse.jgit.api.Git)

Example 2 with FileRepository

use of org.eclipse.jgit.internal.storage.file.FileRepository in project Aspose.BarCode-for-Java by aspose-barcode.

the class GitHelper method syncRepository.

public static void syncRepository(String localPath, String remotePath) throws Exception {
    Repository localRepo;
    try {
        localRepo = new FileRepository(localPath + "/.git");
        Git git = new Git(localRepo);
        AsposeConstants.println("Syncronizing Repository [" + remotePath + "]....");
        // Pull the changes
        try {
            git.pull().call();
        } catch (Exception exPull) {
            // If pull failed. Throw this exception to caller
            {
                AsposeConstants.println("Pull failed.");
            }
            // throw it
            throw exPull;
        }
    } catch (Exception ex) {
        throw new Exception("Could not update Repository from Github. Error: " + ex.getMessage());
    }
}
Also used : FileRepository(org.eclipse.jgit.internal.storage.file.FileRepository) FileRepository(org.eclipse.jgit.internal.storage.file.FileRepository) Repository(org.eclipse.jgit.lib.Repository) Git(org.eclipse.jgit.api.Git)

Example 3 with FileRepository

use of org.eclipse.jgit.internal.storage.file.FileRepository in project Aspose.OCR-for-Java by aspose-ocr.

the class GitHelper method updateRepository.

public static void updateRepository(String localPath, String remotePath) throws Exception {
    Repository localRepo;
    try {
        localRepo = new FileRepository(localPath + "/.git");
        Git git = new Git(localRepo);
        {
            AsposeConstants.println("Cloning Repository [" + remotePath + "]....");
        }
        // First try to clone the repository
        try {
            Git.cloneRepository().setURI(remotePath).setDirectory(new File(localPath)).call();
        } catch (Exception ex) {
            // If clone fails, try to pull the changes
            try {
                git.pull().call();
            } catch (Exception exPull) {
                // Pull also failed. Throw this exception to caller
                {
                    AsposeConstants.println("Pull also failed.");
                }
                // throw it
                throw exPull;
            }
        }
    } catch (Exception ex) {
        throw new Exception("Could not download Repository from Github. Error: " + ex.getMessage());
    }
}
Also used : FileRepository(org.eclipse.jgit.internal.storage.file.FileRepository) FileRepository(org.eclipse.jgit.internal.storage.file.FileRepository) Repository(org.eclipse.jgit.lib.Repository) Git(org.eclipse.jgit.api.Git) File(java.io.File)

Example 4 with FileRepository

use of org.eclipse.jgit.internal.storage.file.FileRepository in project Aspose.OCR-for-Java by aspose-ocr.

the class GitHelper method syncRepository.

public static void syncRepository(String localPath, String remotePath) throws Exception {
    Repository localRepo;
    try {
        localRepo = new FileRepository(localPath + "/.git");
        Git git = new Git(localRepo);
        AsposeConstants.println("Syncronizing Repository [" + remotePath + "]....");
        // Pull the changes
        try {
            git.pull().call();
        } catch (Exception exPull) {
            // If pull failed. Throw this exception to caller
            {
                AsposeConstants.println("Pull failed.");
            }
            // throw it
            throw exPull;
        }
    } catch (Exception ex) {
        throw new Exception("Could not update Repository from Github. Error: " + ex.getMessage());
    }
}
Also used : FileRepository(org.eclipse.jgit.internal.storage.file.FileRepository) FileRepository(org.eclipse.jgit.internal.storage.file.FileRepository) Repository(org.eclipse.jgit.lib.Repository) Git(org.eclipse.jgit.api.Git)

Example 5 with FileRepository

use of org.eclipse.jgit.internal.storage.file.FileRepository in project Aspose.Cells-for-Java by aspose-cells.

the class GitHelper method updateRepository.

/**
 * @param localPath
 * @param remotePath
 * @throws Exception
 */
public static void updateRepository(String localPath, String remotePath) throws Exception {
    Repository localRepo;
    try {
        localRepo = new FileRepository(localPath + "/.git");
        Git git = new Git(localRepo);
        // First try to clone the repository
        try {
            Git.cloneRepository().setURI(remotePath).setDirectory(new File(localPath)).call();
        } catch (Exception ex) {
            // If clone fails, try to pull the changes
            try {
                git.pull().call();
            } catch (Exception exPull) {
                // throw it
                throw exPull;
            }
        }
    } catch (Exception ex) {
        throw new Exception("Could not download Repository from Github. Error: " + ex.getMessage());
    }
}
Also used : FileRepository(org.eclipse.jgit.internal.storage.file.FileRepository) FileRepository(org.eclipse.jgit.internal.storage.file.FileRepository) Repository(org.eclipse.jgit.lib.Repository) Git(org.eclipse.jgit.api.Git) File(java.io.File)

Aggregations

FileRepository (org.eclipse.jgit.internal.storage.file.FileRepository)34 Repository (org.eclipse.jgit.lib.Repository)29 Git (org.eclipse.jgit.api.Git)18 File (java.io.File)16 TestRepository (org.eclipse.jgit.junit.TestRepository)6 IOException (java.io.IOException)5 Test (org.junit.Test)5 Path (java.nio.file.Path)4 ArrayList (java.util.ArrayList)4 Before (org.junit.Before)4 GerritPersonIdentProvider (com.google.gerrit.server.GerritPersonIdentProvider)3 GitAPIException (org.eclipse.jgit.api.errors.GitAPIException)3 ObjectId (org.eclipse.jgit.lib.ObjectId)3 ObjectInserter (org.eclipse.jgit.lib.ObjectInserter)3 PersonIdent (org.eclipse.jgit.lib.PersonIdent)3 RevCommit (org.eclipse.jgit.revwalk.RevCommit)3 FileBasedAllProjectsConfigProvider (com.google.gerrit.server.config.FileBasedAllProjectsConfigProvider)2 SitePaths (com.google.gerrit.server.config.SitePaths)2 RepositoryChanged (com.searchcode.app.dto.RepositoryChanged)2 ObjectReader (org.eclipse.jgit.lib.ObjectReader)2