Add, commit, and push everything in the git repository.
- •Use
git add -Ato add all files. - •Use
git commit -m <message>. The message should use git conventional commits and should be short and sweet. Don't add any co-authoring or make the commit messages super long - messages should be short and sweet. - •Use
git pushto push the changes. If this fails, you are either not in a git repository, in a detached state, the branch is not connected to the upstream, or something else. Investigate the situation, if it is not possible to push do not force it. Explain the issue to the user and do not take action unless told.