How to push changes to Git Hub using the command line?
Enter git commit -m "[commit message]" to save the changes to your local repository.
You can enter anything for the commit message, but adding -m "[commit message]" specifies what this code change is doing, so it's helpful to be clear and concise. Enter git push origin [branch name] to save your code changes to GitHub.
Comments
Post a Comment