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

3. .gitignore

  • add a .gitignore file in the root of your firstname-lastname repo
    • I would recommend copying the .gitignore from the training repo

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