how to add .gitignore to project code example

Example 1: set up git repository

# New local repository
git init
git add .
git commit -m "Initial commit"

# New remote repository
# Create remote repository (likely on github), then:
git remote add origin https://github.com/username/new_repo #https
git remote add origin [email protected]:username/new_repo #ssh
# Now push
git push -u origin master

Example 2: git add gitignore

$ touch .gitignore

Example 3: how to use gitignore to ignore a folder

You can ignore entire directories, just by including their paths and putting a / on the end:

1
2
node_modules/
logs/

Example 4: what to add to gitignore

Look at this awesome site!
https://www.toptal.com/developers/gitignore
Generates a gitignore for you, based on the technologies you're using

Example 5: github create repository command line

git **create -d "\<commit name\>"**

Example 6: what is add.gitignore

The purpose of gitignore files is to ensure that certain files not tracked by git remain untracked.