GithubHelp home page GithubHelp logo

devvsakib / github-error-solve Goto Github PK

View Code? Open in Web Editor NEW
53.0 53.0 42.0 1.12 MB

This is an Open Source repository. Our main goal is to solve any github error or issues and help other to feel comfortable using GitHub.

Home Page: https://github-error-solve.vercel.app

License: GNU General Public License v3.0

JavaScript 88.33% SCSS 3.21% CSS 5.67% HTML 2.55% Shell 0.23%
git github github-actions github-config hacktoberfest javascript open-source reactjs tailwindcss vite

github-error-solve's Introduction

DevvSakib is typing now..

Hello Dev! Iโ€™m Sakib Ahmed

  • ๐Ÿ’ป I'm a Frontend Developer
  • ๐Ÿ†• Exploring new technologies and developing software solutions and quick hacks.
  • ๐Ÿงฉ Open Source
  • ๐Ÿ“ Follow me for Open-source Tips, Projects.
  • ๐Ÿ“ซ [email protected]

๐Ÿ’ฌ Let's connect

Let's grow network together!

Twitter Badge LinkedIn Badge Hashnode Badge

GitHub User's stars

coding cat


๐Ÿ› ๏ธ Languages and Tools


My Skills

๐Ÿ› ๏ธ CMS Expert


My Skills


Activities on GitHUb

devvsakib's GitHub stats

Top Language I Use

Top Langs


Community for Web Dev [PowerTheWeb] DISCORD - JOIN


An image of @devvsakib's Holopin badges, which is a link to view their full Holopin profile




Latest Blogs

github-error-solve's People

Contributors

andrey100f avatar ankitk26 avatar anvikshik avatar aryangodara avatar codemeop avatar dependabot[bot] avatar devvsakib avatar devxprite avatar dialejo24 avatar duragpal avatar ezequielbugnon avatar gandholi-kumar avatar harshdeep61034 avatar hussain-shariff avatar imlakshaychauhan avatar imtiazpy avatar mohamedaldeep avatar mohd-raza avatar munnokd avatar nawarajshah avatar priyankarpal avatar rohinish404 avatar roii31-game avatar safil-badarudeen avatar saksham00001 avatar shobhitexe avatar smithop avatar sudeepmahato16 avatar thelonealchemist avatar yash282003 avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar

github-error-solve's Issues

add error to error.json file

if you get any errors and solved or not, please add them to src/data/error.json file.
We are collecting all types of errors that may occur when you commit, push, pull, merge, or while changing branches.

Example:

 {
      "type": "push",
      "title": "! [rejected] branch -> branch (non-fast-forward)",
      "description": "Some quick example text to build on the card title and make up the bulk of the card's content.error: failed to push some refs to '[email protected]:/reponame.git' To prevent you from losing history, non-fast-forward updates were rejected Merge the remote changes (e.g. 'git pull') before pushing again. See the 'Note about fast-forwards' section of 'git push --help' for details.",
      "solutions": "git push origin [branch name] -f"
    }

Type: add, pull, merge, push, commit, git init, etc...
Title: it's mandatory to add a title CZ our search filter work on the title.
Description: Copy the error from the terminal or describe it
Solution: If you know how to solve it, please add it here. to break the link use < this. if not solved leave it blank.

[Feature]: Make the Navbar fixed.

As the user scrolls down, the navigation bar becomes obscured. In order to maintain easy access to the various pages on the website, including the homepage and documentation page, it is recommended that the navigation bar be fixed in place while scrolling. This will ensure that users can easily navigate between pages, even as they scroll through the website's content.

GitHub-Error-Solve---Opensource-Projects.webm

[FEAT]: add dummy content to doc page

we have a doc page but the page is empty and not linked. file dir src/pages/doc.jsx
add some dummy text and title to the page.
image

design concept:
image

first, you have to link the page.

hide scrollbar for all browser

hide the scrollbar from the website
image

code you need:

body::-webkit-scrollbar {
display: none;
}

html {
overflow: auto;
-ms-overflow-style: none;
scrollbar-width: none;
}

[BUG]: Image not showing in README

Describe the bug
The image in contributors section is not showing, what is weird is that the link of the image is in the README but it is not rendering on the Github README preview. I dont know if that is only happening with me or it is also happening with you.

To Reproduce

  1. Go to main Github page
  2. Scroll down
  3. look in the contributors section

Expected behavior
You should not see the image

Screenshots
image

Desktop (please complete the following information):

  • OS: [Windows]
  • Browser [Chrome]
  • Version [Windows 10]

Smartphone (please complete the following information):
N/A

Additional context
N/A

add this error solution

I found this random pic, if you know the correct solution to fix this, please add to src/data/error.json file.

1674563506671.jpg

error on commit

I found that there are no errors under the section of commit , can i add an error and solution that occur while commiting into error.json,
image

Fatal [BUG]: I cant run the repo

Describe the bug
There is no file that has vite because what i think there is no github-error-solve folder so i cant run the repo

To Reproduce

  1. npm run dev

Expected behavior
vite is not recognized

Screenshots
image

Desktop (please complete the following information):

  • OS: [Windows]
  • Browser [N/A]
  • Version [N/A]

Additional context
N/A

design the Filter button

currently we dont have any design for this button. dont be confused, its a button though. design something you like
image

add favicon

There are no favicons, please add our logo to the favicon.

Describe the solution you'd like
logo dir public/assets

[Bug]: Make the content sit inside the card

If Any title of a Github error get's bigger, it overflows out of the card.

Make the content of the card remain inside the card.

It is happening because the height of the cards aligns with the height of other cards in the same row, making the content getting overflowed rather than wrapping into multiple lines.

So the workaround would be to review the design again make the a consistent design

GitHub Error Solve - Opensource Projects

Pull Type Issue

Is your feature request related to a problem? Please describe.
"error: failed to push some refs to 'https://github.com/โ€ฆ'": This error occurs when you try to push to a repository but your local branch is behind the remote branch and you need to pull the changes first.

Describe the solution you'd like
git fetch origin
git status
git merge origin/remote-branch-name
git push origin BRANCHNAME

Add a vercel json file to redirect

Describe the bug
When navigating to another page and refreshing the site, it gives us Not Found.
image

To Reproduce
Steps to reproduce the behavior:

  1. add vercel.json file in the root directory
  2. copy paste the code in the file
{
    "rewrites": [
        {
            "source": "/(.*)",
            "destination": "/"
        }
    ]
}

Expected behavior
Then user able to reload page after even page navigating

Additional context
For more information, please read my blog about Vercel and Netlify "Page Not Found" Error
https://dev.to/devvsakib/how-to-solve-vercel-and-netlify-page-not-found-after-page-refresh-solved-2ol7

[FEATURE]: Add twitter to contributors from api

Is your feature request related to a problem? Please describe.
Yes, it is related to #103 it is all described there

Describe the solution you'd like
Described in #103
Describe alternatives you've considered
N/A
Additional context
N/A

configure Tailwindcss to website

We decide to use Tailwind. It's a HTML website.
We love to add tailwindcss cz tailwind made easy.

For guidelines: visit

Even if you are a beginner, i would love to hear that you wanna try.

Do not add tailwindcss cdn or link, you have to install it via npm and link to html file

readme update

I think read me should be made a little bit more beginner friendly by adding exact steps to follow while they make changes locally , and how to create a pull request . So even a beginner in web development can contribute with ease. we dont want to delete any data already in readme , but we can add bit more detail to it . Assign me if its good opinion to apply on readme.

add image to readme

Is your feature request related to a problem? Please describe.
image is not been able to in the readme section! please add image

Describe the solution you'd like
A clear and concise description of what you want to happen.

Describe alternatives you've considered
A clear and concise description of any alternative solutions or features you've considered.

Additional context
Add any other context or screenshots about the feature request here.
2023-01-26 (1)

enhancement of error card animation

i have added transition to error card so when ever hover happens it will increase size it looks good, what do you think can i make a pull request for that .

Text error

image

git commit -m ' commit message ' is this is how it supposed to display right?
my text is not displaying in comment if i add <> this before and after commit message in above line

[SUGGESTION] UI/UX design improvement

We have built the basic structure of GES. Now we need some suggestions for UI/UX design improvements. Please drop any suggestions you have.

  • Background Color
  • Header BG Color
  • Card BG Color
  • Font Family
  • Layout
  • Anything we need to add?

rn our website:
image

You can contribute and get Green Square๐ŸŸฉ

add animation to filter menu

When the User clicks the filter, it comes with animation, but if the user clicks again to hide, it disappears instantly.
image

Add ease-out animation. you can use any type of animation package.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.