0
I created a repository on Github and so far everything perfect, at first I gave a commit just for testing.
git add -A
git commit -a -m "Original"
So I made several changes to the code and decided to give one more commit, to save these changes, so again I gave:
git add -A
git commit -a -m "----Qualquer coisa que eu tenha escrito aqui----"
But when I returned to my Github repository, nothing has changed, only the two commits, Original and Initial Commit, have I done something wrong? What remains to be done?
You used the
push
after committing ? Maybe you forgot.– JeanExtreme002
Yes, I gave
git push origin master
and gives me the message "Everything up-to-date" I tried now to give another commit, gives me the message "Nothing to commit, work Tree clean", probably because I performed the commit of the question and has nothing else to send. What do I do?– Ban
You can post the output of the following commands: git status and git remote -v
– Adriano Gomes