-
Notifications
You must be signed in to change notification settings - Fork 50
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add post for Git and Github Usage #203 #242
Conversation
@jump3rhood is attempting to deploy a commit to the devvsakib's projects Team on Vercel. A member of the Team first needs to authorize it. |
WalkthroughThe recent update introduces a comprehensive guide, Changes
Poem
Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media? TipsChatThere are 3 ways to chat with CodeRabbit:
Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (invoked as PR comments)
Additionally, you can add CodeRabbit Configuration File (
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Actionable comments posted: 59
Review details
Configuration used: CodeRabbit UI
Review profile: CHILL
Files selected for processing (2)
- public/posts/git_and_github_usage.md (1 hunks)
- public/posts/index.json (1 hunks)
Files skipped from review due to trivial changes (1)
- public/posts/index.json
Additional context used
LanguageTool
public/posts/git_and_github_usage.md
[misspelling] ~30-~30: Use “an” instead of ‘a’ if the following word starts with a vowel sound, e.g. ‘an article’, ‘an hour’.
Context: ...we need Git? Imagine you're working on a awesome new feature for your web app, a...(EN_A_VS_AN)
[uncategorized] ~108-~108: Possible missing comma found.
Context: ...a commit, it is added to the end of the current latest commit. ```bash git commit -m "...(AI_HYDRA_LEO_MISSING_COMMA)
[style] ~132-~132: This phrase is redundant. Consider writing “point” or “time”.
Context: ...t snapshot of the repository at a given point in time. This snapshot includes references to a...(MOMENT_IN_TIME)
[style] ~499-~499: Consider an alternative to strengthen your wording.
Context: ... click "New Pull Request". 7. Making Further Changes: Maintainers might ask for changes...(CHANGES_ADJUSTMENTS)
Markdownlint
public/posts/git_and_github_usage.md
61-61: null
Fenced code blocks should have a language specified(MD040, fenced-code-language)
90-90: null
Fenced code blocks should have a language specified(MD040, fenced-code-language)
124-124: null
Fenced code blocks should have a language specified(MD040, fenced-code-language)
181-181: null
Fenced code blocks should have a language specified(MD040, fenced-code-language)
243-243: null
Fenced code blocks should have a language specified(MD040, fenced-code-language)
394-394: null
Fenced code blocks should have a language specified(MD040, fenced-code-language)
Additional comments not posted (1)
public/posts/git_and_github_usage.md (1)
24-27
: LGTM!The explanation of Git is accurate and well-written.
```bash | ||
git init | ||
``` |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Specify the language in the code block.
Add bash
to the fenced code block.
- ```bash
+ ```bash
```bash | ||
mkdir CoolApp | ||
cd CoolApp | ||
git init | ||
``` |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Specify the language in the code block.
Add bash
to the fenced code block.
- ```bash
+ ```bash
``` | ||
Initialized empty Git repository in /path/to/CoolApp/.git/ | ||
``` |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Specify the language in the code block.
Add bash
to the fenced code block.
- ```
+ ```bash
Tools
Markdownlint
61-61: null
Fenced code blocks should have a language specified(MD040, fenced-code-language)
```bash | ||
git add weather_checker.py | ||
``` |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Specify the language in the code block.
Add bash
to the fenced code block.
- ```bash
+ ```bash
```bash | ||
git status | ||
``` |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Specify the language in the code block.
Add bash
to the fenced code block.
- ```bash
+ ```bash
git rebase <base-branch> | ||
``` |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Specify the language in the code block.
Add bash
to the fenced code block.
- ```bash
+ ```bash
Specify the language in the code block.
Add bash
to the fenced code block.
- ```bash
+ ```bash
Specify the language in the code block.
Add bash
to the fenced code block.
- ```bash
+ ```bash
git checkout feature/awesome-feature | ||
git rebase main | ||
``` |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Specify the language in the code block.
Add bash
to the fenced code block.
- ```bash
+ ```bash
Specify the language in the code block.
Add bash
to the fenced code block.
- ```bash
+ ```bash
Specify the language in the code block.
Add bash
to the fenced code block.
- ```bash
+ ```bash
git rebase -i <base-commit> | ||
``` |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Specify the language in the code block.
Add bash
to the fenced code block.
- ```bash
+ ```bash
Specify the language in the code block.
Add bash
to the fenced code block.
- ```bash
+ ```bash
git rebase -i HEAD~3 # Interact with the last 3 commits | ||
``` |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Specify the language in the code block.
Add bash
to the fenced code block.
- ```bash
+ ```bash
Specify the language in the code block.
Add bash
to the fenced code block.
- ```bash
+ ```bash
### Why do we need Git? | ||
|
||
Imagine you're working on a awesome new feature for your web app, and suddenly things go haywire. Wouldn't it be great if you could just rewind to when everything was working perfectly? That's where Git comes in! Here's why we need it: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fix the typo.
Use "an" instead of "a" before "awesome".
- Imagine you're working on a awesome new feature for your web app, and suddenly things go haywire.
+ Imagine you're working on an awesome new feature for your web app, and suddenly things go haywire.
Committable suggestion
‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.
### Why do we need Git? | |
Imagine you're working on a awesome new feature for your web app, and suddenly things go haywire. Wouldn't it be great if you could just rewind to when everything was working perfectly? That's where Git comes in! Here's why we need it: | |
### Why do we need Git? | |
Imagine you're working on an awesome new feature for your web app, and suddenly things go haywire. Wouldn't it be great if you could just rewind to when everything was working perfectly? That's where Git comes in! Here's why we need it: |
Tools
LanguageTool
[misspelling] ~30-~30: Use “an” instead of ‘a’ if the following word starts with a vowel sound, e.g. ‘an article’, ‘an hour’.
Context: ...we need Git? Imagine you're working on a awesome new feature for your web app, a...(EN_A_VS_AN)
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
Summary by CodeRabbit