git reset origin
git fetch origin
git reset --hard origin/master
Remember this forever
git reset origin
git fetch origin
git reset --hard origin/master
Remember this forever
java clear console
// in JDK 11 you can do:
// It can be better than exec("cls") because it even works in intellij.
// Also, putting println() in a for loop is worse because there is a
// noticable delay between calls. This code does a single call, but
// stacks a ton of '\n's.
private void clearConsole() {
System.out.println(System.lineSeparator().repeat(100));
}
java clear console
public static void clearScreen() {
System.out.print("\033[H\033[2J");
System.out.flush();
}
java clear console
Runtime.getRuntime().exec("cls");
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us