Hi, folks! I’m trying to send commits from origin to another branch:
git push -uf origin foo2
Then I gets it:
branch ‘foo’ set up to track ‘origin/foo2’.
But when I’m trying to do this:
git push -uf origin origin/foo2
It writes me:
Everything up-to-date
And commits don’t be sent.
Now I’m using ‘foo’ branch.
And the list of changes:
changed: scripts/file1.gd
changed: scripts/file2.gd
changed: scripts/file3.gd
Is still not empty. After I sends commits - nothing changes.
I don’t know what do I do wrong. Can you help me? 🤷🏻♂️
I already have to do this.