remoteUpdate method

Future<void> remoteUpdate()

Fetches updates for the default remote in the repository.

Implementation

Future<void> remoteUpdate() async {
  final arguments = ['remote', 'update'];
  await executeCommand(
    arguments: arguments,
  );
}