this adds first git command 1. git init-> this command initiate the Repository 2. git add -> this command add the file or git add . -> this command add all modified file 3. git commit -m "commit message" -> this command add commit message 4. git branch -M main -> this command change the branch name into main branch,(this command help to change the branch name) 5. git remote add origin 6. git push origin main or git push -u origin main