Fork the main repository by creating a copy of the project in your GitHub account.
- Original Repository: revolution-software-club/revolution-software-club.github.io
- Note: while giving name by default it will came as
revolution-software-club.github.io
so remove.github.io
and keep file name asrevolution-software-club
- After forking, your repository will be located at
https://github.com/<your_username>/revolution-software-club
Go to code option copy https URL and clone the repository to your local system using the following command:
git clone https://github.com/<your_username>/revolution-software-club.github.io.git
Change directory to the cloned repository:
cd revolution-software-club
Add the upstream URL to track the original repository:
git remote add upstream https://github.com/revolution-software-club/revolution-software-club.github.io.git
Optionally, verify remote URLs using:
git remote -v
Create a new branch to work on your feature.
git checkout -b feature1
Implement your feature or make changes in this branch.
git add .
git commit -m "Your descriptive message"
Push your changes to your branch on GitHub :
git push origin feature1
daily go on the repo click on sync button then come on terminal fire this cmd
git pull origin main
Create a new branch to work on your feature.
git checkout -b feature2
Implement your feature or make changes in this branch.
git add .
git commit -m "Your descriptive message"
Push your changes to your branch on GitHub :
git push origin feature2