Skip to content

Latest commit

 

History

History
39 lines (25 loc) · 1.49 KB

README.md

File metadata and controls

39 lines (25 loc) · 1.49 KB

STUFF TO DO FIRST:

  • Clone this project
  • Make a folder with your name as the folder name
  • copy over the free-code-camp-progress.template.txt file over into your new folder and rename it to free-code-camp-progress.txt
  • Update the file with all of your FCC progress. Keep this file up to date weekly please.
  • Commit and Push the project to your own branch and put in a PR to merge to master.

Apprentice notes and general stuff

This is a test repo

Some commands for you:

git clone <url>

This duplicates a repo from github onto your computer. You'll find the (cloned) repo under a folder with the name of the project, eg 'myTestRepo'

git checkout -b <new_branch_name>

This command creates a new branch locally for you to work in and make changes. Changes you make in this branch won't affect other branches assuming you commit to the branch (that's a command - not an encouragement)


git add -A

'Stages' all changes you've made and gets the ready to commit. You can remove or add some files at this stage, so you don't have to commit all the files. the '-A' flag adds all files to staging.


git commit -m "My commit message. Dominic needs to git gud boi"

This 'commits' the changes you made to your branch. It's now safe to switch branches and you can push your branch back up to github so other people can see it.


git push --setupstream origin <branch_name>

This 'pushes' the changes you've just staged to github itself.

Hello Aliens -Brielynn

Dominic Fights Chuck Norris