GES or GitHub Error Solve, is an open-source project dedicated to resolving any errors or issues that may arise while using GitHub. Our primary objective is to empower individuals to feel comfortable and confident using the platform by providing comprehensive solutions to common problems.
- Fork this repository.
- Clone the repository.
git clone [email protected]:<your github username>/github-error-solve.git
- Navigate to folder
cd github-error-solve
- Install node dependencies
npm i
- Start the project
npm run dev
- If Project Starts everything is correct , Now you need to stop the project.
Cntrl + C
- Make a New branch.The change you are going to make would be a good branch name.
git checkout -b <name-of-your-branch>
- Stage your changes
git add --all
or
git add <Name-of-file-to-stage>
- Commit changes
git commit -m "<Commit-message>"
- Check status of your repository.
git status
- The response should be like this
On branch <name-of-your-branch>
nothing to commit, working tree clean
- Pushing your repository to GitHub.
git push origin <name-of-your-branch>
or
git branch -M master
git push -u origin master
-
On the GitHub website, navigate to your forked repo - on the top of the files section, you'll notice a new section containing a
Compare & Pull Request
button! -
Click on that button, this will load a new page, comparing the local branch in your forked repository against the main branch. Click the green
Create Pull Request
button.
Troubleshoot Facing problem starting the server or any other problem? Please let us know by raising an Issue
Live Link GES
Thanks to all contributors ❤️