I have a remote project with a branch. So I cloned the repo first. Then follow these steps to clone to work with the branch:
git checkout -b <name> <remote_branch_name>
Then I made the necessary changes in this thread and want to do this:
git commit -a -m "changed made"
However, when I want to return to the remote branch, it just says "Everything is up to date"
git push
Everything up-to-date
I check the cloning of the remote repo in another directory in which it did not push the changes. So how do I push my changes back to the remote branch
thank
source
share