I currently have a public github repository called bfs_assignment
which I set up using following commands:
git config --global user.name <my name>
git config --global user.email <my email>
touch .gitignore
git init
git add .
git commit -m "Initial commit"
git init
git status
git remote add origin <SSH of bfs_assignment>
git push origin master
Now I have created a new repository called from_aditya
where I want to push the same changes. How to make it such that if I click on commit and push on my project, the changes are pushed to both the repositories.
Kindly comment if you need more information.