Problem Set 1
Summary
We'll create our first IntelliJ project, initialize a Git repository, add and commit our project files, create a GitHub repository, and push our files to this remote repository.
Requirements
Create a new IntelliJ project.
Create a Java class file called
HelloJava.java
.Write a
main
method inHelloJava
that printsHello, Java!
to the console.Initialize a Git repository in the project folder.
Create a
.gitignore
file in the root directory of your project.Add the
.idea
folder, theout
folder, and any.iml
files to the.gitignore
file.Add and commit your
src
folder and.gitignore
file to version control.Create a remote repository on GitHub called
pset-1
.Mark your repository as private, and add me as a collaborator (
ryanjwilson
).Push your commit to your remote repository.
Deliverables
Submit your repository URL.
Your repository URL will look something like this: github.com/your-username/your-repository
. If your username is jdoe
and your repository (as indicated in the requirements) is called pset-1
, then your URL will be github.com/jdoe/pset-1
.
Your repository contents should match mine exactly.

Deadline
All submissions are due on Canvas by 11:59pm on Sunday, September 13, 2020.
Last updated
Was this helpful?