View git_new_local_remote_branch
# create new branch and switch to it | |
git checkout -b <branch_name> | |
# push the branch to the remote repository origin and tracks it | |
git push -u origin HEAD |
View Main.java
import javafx.application.Application; | |
import javafx.fxml.FXMLLoader; | |
import javafx.scene.Scene; | |
import javafx.scene.layout.Pane; | |
import javafx.stage.Stage; | |
import java.io.IOException; | |
/** | |
* Main application class. |