Skip to content
This repository was archived by the owner on Jul 18, 2023. It is now read-only.

Commit dd00795

Browse files
authored
Add git-cheats v2 (#25)
1 parent 1e62fb3 commit dd00795

36 files changed

+3605
-3571
lines changed

‎.eslintrc.json

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
{
2+
"extends": "next/core-web-vitals",
3+
"rules": {
4+
"@next/next/no-img-element": 0,
5+
"react/no-unescaped-entities": 0,
6+
"react/display-name": 0,
7+
"import/no-anonymous-default-export": 0,
8+
"react-hooks/exhaustive-deps": "warn",
9+
"react-hooks/rules-of-hooks": "error",
10+
"semi": ["error", "never"],
11+
"indent": ["error", "tab"],
12+
"quotes": [2, "double", { "avoidEscape": true }]
13+
}
14+
}

‎.gitignore

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
2+
3+
# dependencies
4+
/node_modules
5+
/.pnp
6+
.pnp.js
7+
8+
# testing
9+
/coverage
10+
11+
# next.js
12+
/.next/
13+
/out/
14+
15+
# production
16+
/build
17+
18+
# misc
19+
.DS_Store
20+
*.pem
21+
22+
# debug
23+
npm-debug.log*
24+
yarn-debug.log*
25+
yarn-error.log*
26+
.pnpm-debug.log*
27+
28+
# local env files
29+
.env*.local
30+
31+
# vercel
32+
.vercel
33+
34+
# typescript
35+
*.tsbuildinfo
36+
next-env.d.ts

‎.prettierrc

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
module.exports = {
2+
bracketSpacing: true,
3+
jsxBracketSameLine: true,
4+
singleQuote: true,
5+
trailingComma: 'none',
6+
semicolons: false
7+
};

‎LICENSE.md renamed to ‎LICENSE

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
## MIT License
1+
MIT License
22

3-
**Copyright (c) 2018 Can Cellek**
3+
Copyright (c) 2015-2022 Can Cellek
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

‎README.md

Lines changed: 36 additions & 58 deletions
Original file line numberDiff line numberDiff line change
@@ -1,58 +1,36 @@
1-
<p align="center">
2-
<h1 align="center">Git Cheats - <i>Cheatsheet For Git Commands</i></h1>
3-
</p>
4-
<p align="center">
5-
<img src="assets/images/anim.gif">
6-
</p>
7-
<p align="center">
8-
<a href="https://excalith.github.io/git-cheats/">
9-
<img src="https://img.shields.io/badge/GitCheats-APP-orange.svg?longCache=true&style=for-the-badge">
10-
</a>
11-
<a href="https://github.com/excalith/git-cheats-cli">
12-
<img src="https://img.shields.io/badge/GitCheats-CLI-brightgreen.svg??longCache=true&style=for-the-badge">
13-
</a>
14-
</p>
15-
16-
> This project is very old and outdated, yet it still exists since it may help someone out there.
17-
18-
**Git Cheats** is a small project for people who wants to get into git using commands but don't know where to start. It started as a side-project to help my friends / colleagues check commands easily, but it turned out it has been shared through my friends lots of times and it is being used on a daily basis. Suprising enough, I wanted to create a repository for this. Maybe someone finds it useful and / or wants to contribute!
19-
20-
### GitCheats App [(Link)](https://excalith.github.io/git-cheats/)
21-
A simple web-based app where you can filter out commands in need easily.
22-
23-
### GitCheats CLI [(Link)](https://github.com/excalith/Git-Cheats-Cli)
24-
A CLI app as a companion to GitCheats to fetch and retrieve commands right into your beloved terminal.
25-
26-
27-
## How To Contribute
28-
Please feel free to contribute any way you can. Just keep in mind that you should pay attention to [CONTRIBUTE.md](.github/CONTRIBUTING.md) before contributing.
29-
30-
That being said, you can;
31-
* Create issues for feature requests and issues
32-
* Create pull requests for any fixes / additions
33-
* Create pull requests for localizations
34-
35-
## Support
36-
If you find this project useful, please consider <a href="https://www.buymeacoffee.com/excalith" target="_blank">supporting</a> it. This will help further domain registrations and improvements.
37-
38-
## Contributors
39-
* [excalith](https://github.com/excalith) - Maintainer / English, Turkish & Klingon
40-
* [aemmadi](https://github.com/aemmadi) - Telugu & Hindi
41-
* [aladhims](https://github.com/aladhims) - Indonesian
42-
* [munex-com](https://github.com/munex-com) - Japanese
43-
* [Moonstroke82](https://github.com/Moonstroke82) - German
44-
* [bhabermann](https://github.com/bhabermann) - Portuguese
45-
* [Maluzzz](https://github.com/Maluzzz) - Spanish
46-
* [osamagoraya](https://github.com/osamagoraya) - Urdu
47-
* [LucaArgentieri](https://github.com/LucaArgentieri) - Italian
48-
49-
## License
50-
This project is licensed under the MIT License - see the [LICENSE.md](LICENSE.md) file for details.
51-
52-
___
53-
54-
#### Other Useful Projects
55-
If you think there should be more, please create an issue labeled as `enhancement` and give direct link to the project.
56-
* [Git Init](https://pel-daniel.github.io/git-init) - Great learning tool for learning how to use commands
57-
* [Git - The Simple Guide](https://rogerdudler.github.io/git-guide) - Simple guide for getting started with git
58-
* [Learn Git Branching](https://learngitbranching.js.org) - Learn how to use branches properly
1+
This is a [Next.js](https://nextjs.org/) project bootstrapped with [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packages/create-next-app).
2+
3+
## Getting Started
4+
5+
First, run the development server:
6+
7+
```bash
8+
npm run dev
9+
# or
10+
yarn dev
11+
```
12+
13+
Open [http://localhost:3000](http://localhost:3000) with your browser to see the result.
14+
15+
You can start editing the page by modifying `pages/index.js`. The page auto-updates as you edit the file.
16+
17+
[API routes](https://nextjs.org/docs/api-routes/introduction) can be accessed on [http://localhost:3000/api/hello](http://localhost:3000/api/hello). This endpoint can be edited in `pages/api/hello.js`.
18+
19+
The `pages/api` directory is mapped to `/api/*`. Files in this directory are treated as [API routes](https://nextjs.org/docs/api-routes/introduction) instead of React pages.
20+
21+
## Learn More
22+
23+
To learn more about Next.js, take a look at the following resources:
24+
25+
- [Next.js Documentation](https://nextjs.org/docs) - learn about Next.js features and API.
26+
- [Learn Next.js](https://nextjs.org/learn) - an interactive Next.js tutorial.
27+
28+
You can check out [the Next.js GitHub repository](https://github.com/vercel/next.js/) - your feedback and contributions are welcome!
29+
30+
## Deploy on Vercel
31+
32+
The easiest way to deploy your Next.js app is to use the [Vercel Platform](https://vercel.com/new?utm_medium=default-template&filter=next.js&utm_source=create-next-app&utm_campaign=create-next-app-readme) from the creators of Next.js.
33+
34+
Check out our [Next.js deployment documentation](https://nextjs.org/docs/deployment) for more details.
35+
36+

0 commit comments

Comments
 (0)