File > New > Other.Git folder and click Git Repository.Finish.Window > Perspective > Open Perspective > Other > Git.File > New > Java Project.Use Default Folder, click Browse, and navigate to the user/directory/git/folder/new assignment folder.Next, check JDK 11 (or go to Edit Library and select JDK 11 there), and then click Finish.File > Add local repo, navigate to the new repository directory location, and then deselect .classpath, .project, and .class (these are Eclipse files that don’t need to be committed to the remote GitHub repository).Repository > Repo settings > Ignored Files./bin/, .classpath, .project (and .DS_Store for Mac users), then save. You should now see the .gitignore file with these ignored file types.Keep this code private.Publish Repository.Push.Repositories (or refresh the page).Anytime you add new code, commit and push the changes. You can do this multiple times a day, as needed.
Remember, this is a temporary workflow until you learn how to use Maven. Following these steps will help you set up a Git repository, connect it to your local development environment, and push your code changes to the remote repository on GitHub.