The git command to 'save' your work
The symbol used to build a project
What is the hammer?
What is picture of a bug?
The post script auto complete for System.out.println
What is 'sout'?
The name of a Java SDK
What is JDK?
The git command to say choose what files to save
What is git add
The symbol used to run a project
What is the arrow?
The name of the place where the program stops on purpose while debugging
What is a 'breakpoint'?
The key combo for quick fixes
What is 'alt + enter'?
The file extension of a java file
What is '.java'?
The git command to copy a remote repository
What is git clone?
The option to change how your program is ran
What are 'edit configurations'?
The name of the debug option to dive deeper into the stack
What is 'step into'?
What is 'shift + shift'?
What is '.class'?
The git command to put your local repository changes to the remote repository
What is git push?
The location of the options to change your SDK
What is 'project structure'?
The name of the debug option to continue without going deeper into the stack
What is 'step over'?
The hotkey to rename all instances of a variable
What is 'Shift + F6'?
The file extension for a compressed package of compiled java class code
What is '.jar'?
The git command to update your local repository after changes have been made to the remote repository.
What is git pull?
The reason you need to build before running
What is converting java files into class files to be executed?
The name of the debug option to stop right before a program breaks
What is 'break at exceptions'?
The hot key to open the commit pane
What is 'cmd + 0'?
The entry point of a java program
What is 'main()'?