Pushing to the remote repository
The changes are now committed, but only on your computer, in your local copy of the repository. To make the changes available for others, you need to push the remove-credentials
branch to the remote repository.
Run git push -u origin remove-credentials
:
git push -u origin remove-credentials
Enumerating objects: 9, done.
Counting objects: 100% (9/9), done.
Delta compression using up to 16 threads
Compressing objects: 100% (5/5), done.
Writing objects: 100% (6/6), 666 bytes | 666.00 KiB/s, done.
Total 6 (delta 2), reused 0 (delta 0)
remote: Resolving deltas: 100% (2/2), completed with 2 local objects.
remote:
remote: Create a pull request for 'remove-credentials' on GitHub by visiting:
remote: https://github.com/robocorp/rsb-intranet-robot/pull/new/remove-credentials
remote:
To github.com:robocorp/rsb-intranet-robot.git
* [new branch] remove-credentials -> remove-credentials
Branch 'remove-credentials' set up to track remote branch 'remove-credentials' from 'origin'.
What we learned
- To make the changes available for others, you need to push them to the remote repository.