todo personal repo - seed-0317/training GitHub Wiki
1. Create a repo
- create a repo called firstname-lastname in our GitHub organization
2. Clone
Make a directory for all your repos
mkdir -p ~/code/repos
clone
cd ~/code/repos
git clone <url-to-your-repo>
check status
cd firstname-lastname
git status
.gitignore
3. - add a
.gitignore
file in the root of your firstname-lastname repo- I would recommend copying the
.gitignore
from the training repo
- I would recommend copying the
4. Java hello world
- create a Java project that prints Hello world
- the project should be in a directory
hello-world
inside your repo - add, commit, and push your changes to your central repo
5. Markdown
- deck out your repo's
README.md
file with markdown