9
I’m pushing to a repository in gitlab.com. I get the feedback:
Warning: redirecting to https://gitlab.com/fellipesillvaoff/Dados_Agronomia.git/ Everything up-to-date
In my mind, it worked. In practice the changes are not sent. I saw other similar questions, and tried to follow the steps through git but do not know technical terms hope to find something for layman.
Did you commit to your changes? If your local HEAD is equal to the remote, it looks like this error/warning will appear even.
– Ikaro Pinheiro
how do I type this in git? I changed commit in r several times without success.
– Felipe Silva
If you made any changes, do a
git status
to know what they were, and givinggit add <FILE_NAME>
in the files that were changed or adapted. After thegit commit -m "Descrição das alterações"
to send to your local HEAD and then just give onegit push origin master
to upload the changes to your remote repository.– Ikaro Pinheiro
whereas you have created a new branch, it is necessary to run
git push -u origin <NOMEDABRANCH>
, so everyone in the tb project will have access to your branch.– h3nr1ke