mirror of
https://github.com/lacerta-doc/Lacerta.git
synced 2024-11-26 17:53:14 +00:00
変更
This commit is contained in:
parent
698a191586
commit
87850eb899
|
@ -4,22 +4,28 @@ import org.eclipse.jgit.lib.Repository;
|
||||||
|
|
||||||
public interface ActionRepo {
|
public interface ActionRepo {
|
||||||
|
|
||||||
// 未ステージングのファイルリスト
|
// リポジトリをインスタンス変数に格納
|
||||||
String[] getUnstagedFiles(Repository repository);
|
Repository setRepository(Repository repository);
|
||||||
|
|
||||||
// ステージング済みのファイルリスト
|
// リポジトリ取得
|
||||||
String[] getStagedFiles(Repository repository);
|
Repository getRepository();
|
||||||
|
|
||||||
// ファイルをステージングする
|
// リポジトリ名取得
|
||||||
void stageFile(Repository repository, String path);
|
String getRepositoryName();
|
||||||
|
|
||||||
// ファイルをアンステージングする
|
// ステージングされていないファイルの一覧を取得
|
||||||
void unstageFile(Repository repository, String path);
|
String[] getUnstagedFiles();
|
||||||
|
|
||||||
// ファイルをコミットする
|
// ステージングされているファイルの一覧を取得
|
||||||
void commitFile(Repository repository, String path, String message);
|
String[] getStagedFiles();
|
||||||
|
|
||||||
// ファイルを削除する
|
// ファイルをステージング
|
||||||
// void deleteFile(Repository repository, String path); // TODO-rca:
|
void stageFile(String path);
|
||||||
|
|
||||||
|
// ファイルをアンステージング
|
||||||
|
void unstageFile(String path);
|
||||||
|
|
||||||
|
// ステージングされているファイルをコミット
|
||||||
|
void commit(String message);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -6,28 +6,4 @@ import one.nem.lacerta.source.jgit.ActionRepo;
|
||||||
|
|
||||||
public class ActionRepoImpl implements ActionRepo{
|
public class ActionRepoImpl implements ActionRepo{
|
||||||
|
|
||||||
@Override
|
|
||||||
public String[] getUnstagedFiles(Repository repository) {
|
|
||||||
return new String[0];
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String[] getStagedFiles(Repository repository) {
|
|
||||||
return new String[0];
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public void stageFile(Repository repository, String path) {
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public void unstageFile(Repository repository, String path) {
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public void commitFile(Repository repository, String path, String message) {
|
|
||||||
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user