@shyann
To configure a remote upstream without using git push
, you can use the following steps:
1
|
git remote add upstream <remote_repository_url> |
Replace <remote_repository_url>
with the actual URL of the upstream repository.
1
|
git fetch upstream |
1
|
git merge upstream/master |
By following these steps, you can configure a remote upstream repository without using git push
and keep your local repository in sync with the upstream repository.