Moving Existing code into GitHub
Migrating an existing project to GitHub from the command line on Mac or Linux. The optional steps are used if the directory contains
- cd into the directory for the project
- (optional)
rm -rf .git
- (optional)
rm .gitattributes
- (optional)
rm .gitignore
git init
git add .
git commit -m "Initial Commit from mbp2019"
git remote add origin https://github.com/<youraccountname>/<application>.git
git remote -v
git push --set-upstream origin master
git status
GitHub Security Features
Once the repo is in GitHub, turn on the security features.




Dependabot Alerts
After the Dependabot scan finishes, the alerts will populate the Dependabot alerts page.

Dependabot Generated Pull Request
After the alerts are generated, Dependabot automatically creates Pull Requests for each vulnerable version.
