Submodule 3.2: Getting Started with Bootstrap
Initialize a Git repository
- Open the folder leChocolat in your editor, set up a "
.gitignore
" file with the contents: node_modules and save it! - Next, initialize a Git repository in the project folder by typing "
git init
". - Check your Git repository's status "
git status
". - Add the files to the staging area "
git add .
" - Commit the current staging area to your Git repository '
git commit -m "Initial Setup"
'.