<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Meena Dhakad</title>
    <description>The latest articles on DEV Community by Meena Dhakad (@meena730).</description>
    <link>https://dev.to/meena730</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3025943%2Fb12d37b1-22f6-4e71-ad10-ac3aa12c11ea.jpeg</url>
      <title>DEV Community: Meena Dhakad</title>
      <link>https://dev.to/meena730</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/meena730"/>
    <language>en</language>
    <item>
      <title>🧰 Common Git Commands for Beginners – A Quick Guide</title>
      <dc:creator>Meena Dhakad</dc:creator>
      <pubDate>Mon, 07 Apr 2025 12:01:35 +0000</pubDate>
      <link>https://dev.to/meena730/common-git-commands-for-beginners-a-quick-guide-13mk</link>
      <guid>https://dev.to/meena730/common-git-commands-for-beginners-a-quick-guide-13mk</guid>
      <description>&lt;p&gt;**🔁 1. git init&lt;br&gt;
**Initializes a new Git repository in your project folder.&lt;/p&gt;

&lt;p&gt;bash&lt;br&gt;
Copy&lt;br&gt;
Edit&lt;br&gt;
git init&lt;br&gt;
✅ Use when starting a new project that you want to track with Git.&lt;/p&gt;

&lt;p&gt;**📥 2. git clone&lt;br&gt;
**Clones an existing repository from GitHub or any remote source.&lt;/p&gt;

&lt;p&gt;bash&lt;br&gt;
Copy&lt;br&gt;
Edit&lt;br&gt;
git clone &lt;br&gt;
✅ Use to copy code from a remote repo to your local machine.&lt;/p&gt;

&lt;p&gt;**📄 3. git status&lt;br&gt;
**Shows the current status of your working directory.&lt;/p&gt;

&lt;p&gt;bash&lt;br&gt;
Copy&lt;br&gt;
Edit&lt;br&gt;
git status&lt;br&gt;
✅ See which files have been modified, added, or deleted before committing.&lt;/p&gt;

&lt;p&gt;**➕ 4. git add&lt;br&gt;
**Adds files to the staging area (preparing them to be committed).&lt;/p&gt;

&lt;p&gt;bash&lt;br&gt;
Copy&lt;br&gt;
Edit&lt;br&gt;
git add filename&lt;/p&gt;

&lt;h1&gt;
  
  
  or add everything
&lt;/h1&gt;

&lt;p&gt;git add .&lt;br&gt;
✅ Use after editing/creating files to stage them.&lt;/p&gt;

&lt;p&gt;**💾 5. git commit&lt;br&gt;
**Commits your changes with a message.&lt;/p&gt;

&lt;p&gt;bash&lt;br&gt;
Copy&lt;br&gt;
Edit&lt;br&gt;
git commit -m "your message here"&lt;br&gt;
✅ Records the snapshot of your changes.&lt;/p&gt;

&lt;p&gt;**🔄 6. git pull&lt;br&gt;
**Fetches and merges changes from a remote repository.&lt;/p&gt;

&lt;p&gt;bash&lt;br&gt;
Copy&lt;br&gt;
Edit&lt;br&gt;
git pull origin main&lt;br&gt;
✅ Use before you start working to make sure you're updated.&lt;/p&gt;

&lt;p&gt;**📤 7. git push&lt;br&gt;
**Pushes your local commits to the remote repository.&lt;/p&gt;

&lt;p&gt;bash&lt;br&gt;
Copy&lt;br&gt;
Edit&lt;br&gt;
git push origin main&lt;br&gt;
✅ Uploads your code to GitHub or other remote.&lt;/p&gt;

&lt;p&gt;**🔙 8. git log&lt;br&gt;
**Shows a history of commits.&lt;/p&gt;

&lt;p&gt;bash&lt;br&gt;
Copy&lt;br&gt;
Edit&lt;br&gt;
git log&lt;br&gt;
✅ Useful to review what changes have been made and by whom.&lt;/p&gt;

&lt;p&gt;🗑️ 9. git rm&lt;br&gt;
Removes a file from your repo and stage the deletion.&lt;/p&gt;

&lt;p&gt;bash&lt;br&gt;
Copy&lt;br&gt;
Edit&lt;br&gt;
git rm filename&lt;br&gt;
🤔 Final Thoughts&lt;br&gt;
Learning Git is a journey—but it starts with just a few commands. Once you're comfortable with these basics, you'll be able to collaborate, track changes, and contribute to projects with ease.&lt;/p&gt;

&lt;p&gt;🔗 Was this helpful? Follow me for more beginner-friendly technical guides!&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>javascript</category>
      <category>career</category>
      <category>git</category>
    </item>
    <item>
      <title>🌀 Setting Up Tailwind CSS in a Project</title>
      <dc:creator>Meena Dhakad</dc:creator>
      <pubDate>Mon, 07 Apr 2025 11:57:37 +0000</pubDate>
      <link>https://dev.to/meena730/setting-up-tailwind-css-in-a-project-2jc9</link>
      <guid>https://dev.to/meena730/setting-up-tailwind-css-in-a-project-2jc9</guid>
      <description>&lt;p&gt;📦 &lt;strong&gt;Step 1: Initialize Your Project&lt;/strong&gt;&lt;br&gt;
First, create a new project folder and initialize it with npm:&lt;/p&gt;

&lt;p&gt;bash&lt;br&gt;
Copy&lt;br&gt;
Edit&lt;br&gt;
npm init -y&lt;br&gt;
&lt;strong&gt;🔧 Step 2: Install Tailwind CSS&lt;/strong&gt;&lt;br&gt;
Use npm to install Tailwind and its peer dependencies:&lt;/p&gt;

&lt;p&gt;bash&lt;br&gt;
Copy&lt;br&gt;
Edit&lt;br&gt;
npm install -D tailwindcss postcss autoprefixer&lt;br&gt;
npx tailwindcss init -p&lt;br&gt;
This creates two config files: tailwind.config.js and postcss.config.js.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;📁 Step 3: Configure Template Paths&lt;/strong&gt;&lt;br&gt;
In your tailwind.config.js, define the paths to all your HTML, JS, or JSX files:&lt;/p&gt;

&lt;p&gt;js&lt;br&gt;
Copy&lt;br&gt;
Edit&lt;br&gt;
content: ["./src/*&lt;em&gt;/&lt;/em&gt;.{html,js,jsx}"]&lt;br&gt;
**🎨 Step 4: Add Tailwind Directives&lt;br&gt;
**In your main CSS file (e.g., index.css), add the Tailwind directives:&lt;/p&gt;

&lt;p&gt;css&lt;br&gt;
Copy&lt;br&gt;
Edit&lt;br&gt;
&lt;a class="mentioned-user" href="https://dev.to/tailwind"&gt;@tailwind&lt;/a&gt; base;&lt;br&gt;
&lt;a class="mentioned-user" href="https://dev.to/tailwind"&gt;@tailwind&lt;/a&gt; components;&lt;br&gt;
&lt;a class="mentioned-user" href="https://dev.to/tailwind"&gt;@tailwind&lt;/a&gt; utilities;&lt;br&gt;
**🚀 Step 5: Build Your CSS&lt;br&gt;
**Use the Tailwind CLI to build your CSS:&lt;/p&gt;

&lt;p&gt;bash&lt;br&gt;
Copy&lt;br&gt;
Edit&lt;br&gt;
npx tailwindcss -i ./src/input.css -o ./dist/output.css --watch&lt;br&gt;
**✅ Step 6: Link Output CSS&lt;br&gt;
**Finally, link the generated output.css in your HTML file:&lt;/p&gt;

&lt;p&gt;html&lt;br&gt;
Copy&lt;br&gt;
Edit&lt;br&gt;
&lt;br&gt;
🧠 That’s it!&lt;br&gt;
You're all set to start using Tailwind utility classes in your project.&lt;/p&gt;

</description>
      <category>beginners</category>
      <category>ai</category>
    </item>
  </channel>
</rss>
