33
loading...
This website collects cookies to deliver better user experience
// To add a single file /path/to/filename.js
git add /path/to/filename.js
// To add all files in the folder /path/to/
git add /path/to/*
// To add all files that have been changed
git add .
git add 1-5
git commit -m "feat: added some new feature"
git push