mirror of
https://github.com/lacerta-doc/Lacerta.git
synced 2024-11-23 00:13:16 +00:00
ロジック実装
This commit is contained in:
parent
132991122f
commit
3d7fbf8a95
|
@ -71,16 +71,31 @@ public class ActionRepoImpl implements ActionRepo{
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void stageFile(String path) {
|
public void stageFile(String path) {
|
||||||
|
Git git = getGit();
|
||||||
|
try {
|
||||||
|
git.add().addFilepattern(path).call();
|
||||||
|
} catch (Exception e) { // TODO-rca: エラーハンドリング
|
||||||
|
logger.error(TAG, "stageFile: " + e.getMessage());
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void unstageFile(String path) {
|
public void unstageFile(String path) {
|
||||||
|
Git git = getGit();
|
||||||
|
try {
|
||||||
|
git.reset().addPath(path).call();
|
||||||
|
} catch (Exception e) { // TODO-rca: エラーハンドリング
|
||||||
|
logger.error(TAG, "unstageFile: " + e.getMessage());
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void commit(String message) {
|
public void commit(String message) {
|
||||||
|
Git git = getGit();
|
||||||
|
try {
|
||||||
|
git.commit().setMessage(message).call();
|
||||||
|
} catch (Exception e) { // TODO-rca: エラーハンドリング
|
||||||
|
logger.error(TAG, "commit: " + e.getMessage());
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user