<?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: Tejaswini </title>
    <description>The latest articles on DEV Community by Tejaswini  (@tejaswini_studentwebdeveloper).</description>
    <link>https://dev.to/tejaswini_studentwebdeveloper</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%2F3435646%2Fc5c4745e-1b38-4a06-9511-a54e4cb04bb0.png</url>
      <title>DEV Community: Tejaswini </title>
      <link>https://dev.to/tejaswini_studentwebdeveloper</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/tejaswini_studentwebdeveloper"/>
    <language>en</language>
    <item>
      <title>My First Pull Request Journey And How I Synced My Fork</title>
      <dc:creator>Tejaswini </dc:creator>
      <pubDate>Tue, 19 Aug 2025 16:50:03 +0000</pubDate>
      <link>https://dev.to/tejaswini_studentwebdeveloper/my-first-pull-request-journey-and-how-i-synced-my-fork-k32</link>
      <guid>https://dev.to/tejaswini_studentwebdeveloper/my-first-pull-request-journey-and-how-i-synced-my-fork-k32</guid>
      <description>&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;                               _INTRODUCTION_
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;As part of my journey to become a better developer, I made my first pull request on GiHub. At first, GitHub felt overwhelming-so many new terms like fork, clone, upstream, and pull request. But step by step, I understood how everything works. In this blog, You'll learn:&lt;/p&gt;

&lt;p&gt;1.How to fork and clone a repository&lt;br&gt;
  2.How to make a change and create a pull request&lt;br&gt;
  3.How to check if your PR has conflicts&lt;br&gt;
  4.How to sync your fork with the original project (CLI + GitHub  button)&lt;br&gt;
  5.Troubleshooting the most common errors (with fixes)&lt;/p&gt;

&lt;p&gt;If you are a beginner, this guide will help you too! &lt;/p&gt;

&lt;p&gt;First let me help you to learn the Super Shot words&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;FORK        : Your copy of someone else's repo on your GitHub.&lt;/li&gt;
&lt;li&gt;CLONE       : Download the code to your computor.&lt;/li&gt;
&lt;li&gt;BRANCH      : A safe area to make changes.&lt;/li&gt;
&lt;li&gt;COMMIT      : A snapshot of your changes with a message.&lt;/li&gt;
&lt;li&gt;PULL REQUEST: Asking the original repo to accept your changes.&lt;/li&gt;
&lt;li&gt;UPSTREAM    : A nickname for the original repo you forked from.&lt;/li&gt;
&lt;/ul&gt;
&lt;h2&gt;
  
  
  PROCESS
&lt;/h2&gt;

&lt;p&gt;1)Fork the Repository&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Open the repository you want to contribute to (I used First  Contributions).
-Click Fork → this creates &lt;u&gt;your-username/first-contributions&lt;/u&gt; under your account.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;2)Clone your Fork (to your computer)&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Please download gitbash and do this in it.(always use command line(GitBash) because it improves your knowledge and experience).
&lt;/li&gt;
&lt;/ul&gt;
&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;git clone https://github.com/&amp;lt;your-username&amp;gt;/first-contributions.git
cd first-contributions

&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;


&lt;ul&gt;
&lt;li&gt;Replace  with your GitHub username.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;3)Create a New Branch (recommended)&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;working on a branch keeps your main clean.
&lt;/li&gt;
&lt;/ul&gt;
&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;git checkout -b add-tejaswini
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;


&lt;ul&gt;
&lt;li&gt;Replace add-tejaswini with your branch name.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;4)Make Your Change&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;For First Contributions, I edited &lt;u&gt;Contributors.md &lt;/u&gt; and added my name.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;5)Stage, Commit, and Push&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;git add Contributors.md
git commit -m "Add Tejaswini to Contributors list"
git push origin add-tejaswini
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;6)Create a PULL REQUEST(PR)&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;Go to your fork on GitHub.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;You’ll see a banner: “Compare &amp;amp; pull request.” Click it.&lt;br&gt;
(Or click Pull Requests → New pull request.)&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Make sure it compares your branch ➜ original repo’s main.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Give a short title and description and click Create  pull request.&lt;br&gt;
Example title: &lt;u&gt;Add Tejaswini to Contributors list&lt;/u&gt;&lt;br&gt;
Added my name to Contributors.md as part of first contribution.&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;7)Check if Your PR has Conflicts&lt;br&gt;
     On your PR page, GitHub shows one of these:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;"This branch has no conflicts with the base branch."(This means Good)&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;"This branch has conflicts that must be resolved."(This means it needs some fixes) &lt;br&gt;
You can also see labels like "mergeable"(green) or "conflicting"(red) in the PR list.&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;8)After Merge: Confirm Everything is OK&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;When maintainers merge your PR, the PR shows &lt;u&gt;"Merged"&lt;/u&gt;.&lt;/li&gt;
&lt;li&gt;You can also check the repo's &lt;u&gt;Contributors list&lt;/u&gt; to see your   update live.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;9)Keep Your Fork Updated(Sync with original)&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Set the original repo as &lt;u&gt;upstream&lt;/u&gt; (only once)
&lt;/li&gt;
&lt;/ul&gt;
&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;git remote add upstream https://github.com/firstcontributions/first-contributions.git
git remote -v   # (optional) verify origin vs upstream
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;


&lt;p&gt;Fetch and merge latest changes.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;git fetch upstream
git checkout main
git merge upstream/main
git push origin main

&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;How I Check If My Fork Is In Sync&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;git fetch upstream
git log upstream/main..main

&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;-No output → you’re up to date.&lt;/p&gt;

&lt;p&gt;-Commits listed → you’re behind(merge properly as I shown).&lt;/p&gt;

&lt;h2&gt;
  
  
  Troubleshooting(Real Errors I Hit &amp;amp; Fixes)
&lt;/h2&gt;

&lt;p&gt;1) &lt;code&gt;fatal: not a git repository (or any of the parent dicrectories):.git&lt;/code&gt;&lt;br&gt;
         Cause:You are running commands outside the project folder.&lt;br&gt;
         Fix:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;# Go into the folder you cloned
cd first-contributions
# or clone it first:
git clone https://github.com/&amp;lt;your-username&amp;gt;/first-contributions.git
cd first-contributions

&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;2)&lt;code&gt;"This Branch has conflicts that must br resolved"&lt;/code&gt;&lt;br&gt;
         Cause:Someone changed the same file/lines after you branched. &lt;br&gt;
         Fix:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;git fetch upstream
git checkout add-tejaswini        # your feature branch
git merge upstream/main           # brings latest changes
# Open the files with conflict markers &amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt; ======= &amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; and resolve
git add &amp;lt;fixed-files&amp;gt;
git commit                        # completes the merge
git push origin add-tejaswini
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;3)&lt;code&gt;Accidentally Stuck in &amp;lt;u&amp;gt;nano&amp;lt;/u&amp;gt; editor when writing a commit message&lt;/code&gt;&lt;br&gt;
   -save: &lt;u&gt;Ctrl + o&lt;/u&gt;, press &lt;u&gt;Enter&lt;/u&gt;&lt;br&gt;
   -Exit: &lt;u&gt;Ctrl + X&lt;/u&gt;&lt;br&gt;
4)&lt;code&gt;Already have &amp;lt;u&amp;gt;upstream&amp;lt;/u&amp;gt; set(adding it again errors)&lt;br&gt;
&lt;/code&gt;&lt;br&gt;
Just verify:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;git remote -v

&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;If it's wrong:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;git remote remove upstream
git remote add upstream https://github.com/firstcontributions/first-contributions.git
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  Good Practices That Helped Me
&lt;/h2&gt;


&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;- Create a new branch for each change (don’t commit to main).

&lt;ul&gt;
&lt;li&gt;Use clear commit messages:
&lt;code&gt;feat: add my name to Contributors list
 docs: improve README steps&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;Keep your fork synced before starting new work.&lt;/li&gt;
&lt;li&gt;Prefer Git Bash/terminal—companies value CLI skills.
&lt;/li&gt;
&lt;/ul&gt;&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;
&lt;h2&gt;


MY OUTCOME
&lt;/h2&gt;


&lt;p&gt;My PR titled "Add Tejaswini to Contributors list" was merged.&lt;br&gt;
   Then I synced my fork so it stays up to date for future contributions.&lt;br&gt;
   If you haven't made your first PR yet, try the &lt;u&gt;First  Contributions&lt;/u&gt; repo, its perfect for beginners. Keep going , you have got this.&lt;/p&gt;

</description>
      <category>github</category>
      <category>opensource</category>
      <category>git</category>
      <category>programming</category>
    </item>
    <item>
      <title>How I Created My First Portfolio Website Using GitHub Pages</title>
      <dc:creator>Tejaswini </dc:creator>
      <pubDate>Thu, 14 Aug 2025 19:40:50 +0000</pubDate>
      <link>https://dev.to/tejaswini_studentwebdeveloper/how-i-created-my-first-portfolio-website-using-github-pages-jp4</link>
      <guid>https://dev.to/tejaswini_studentwebdeveloper/how-i-created-my-first-portfolio-website-using-github-pages-jp4</guid>
      <description>&lt;pre class="highlight plaintext"&gt;&lt;code&gt;                             _INTRODUCTION_
&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;AS a CSE student aspiring to become a Software Engineer , I wanted to showcase my projects online for free. That's when I discovered GitHub pages- a simple way to host a websites directly from a GitHub repository.&lt;/p&gt;

&lt;p&gt;In this post, I'll walk you through how I built my first portfolio website  in just a few steps.&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;STEP 1: Create a GitHub Repository&lt;br&gt;
          - Log in to "GitHub".&lt;br&gt;
          - Click new repository.&lt;br&gt;
          - Name it as yourusername.github.io&lt;br&gt;
          - Make it public and click Create repository.&lt;/p&gt;

&lt;p&gt;STEP 2: Add your HTML File&lt;br&gt;
          - On your computer, create a file named index.html.&lt;br&gt;
          - Add basic HTML code:&lt;br&gt;
&amp;lt;!DOCTYPE html&amp;gt;&lt;br&gt;
&lt;br&gt;
&lt;/p&gt;
&lt;br&gt;
    &lt;br&gt;
    &lt;br&gt;
    MUNUKUNTLA TEJASWINI - Portfolio&lt;br&gt;
    &amp;lt;br&amp;gt;
        body {&amp;lt;br&amp;gt;
            font-family: Arial, sans-serif;&amp;lt;br&amp;gt;
            margin: 0;&amp;lt;br&amp;gt;
            background-color: #f9f9f9;&amp;lt;br&amp;gt;
            color: #333;&amp;lt;br&amp;gt;
            line-height: 1.6;&amp;lt;br&amp;gt;
        }&amp;lt;br&amp;gt;
        header {&amp;lt;br&amp;gt;
            background: #222;&amp;lt;br&amp;gt;
            color: white;&amp;lt;br&amp;gt;
            text-align: center;&amp;lt;br&amp;gt;
            padding: 2rem;&amp;lt;br&amp;gt;
        }&amp;lt;br&amp;gt;
        header h1 {&amp;lt;br&amp;gt;
            margin: 0;&amp;lt;br&amp;gt;
            font-size: 2.5rem;&amp;lt;br&amp;gt;
        }&amp;lt;br&amp;gt;
        header p {&amp;lt;br&amp;gt;
            font-size: 1.2rem;&amp;lt;br&amp;gt;
            color: #bbb;&amp;lt;br&amp;gt;
        }&amp;lt;br&amp;gt;
        section {&amp;lt;br&amp;gt;
            padding: 2rem;&amp;lt;br&amp;gt;
            max-width: 900px;&amp;lt;br&amp;gt;
            margin: auto;&amp;lt;br&amp;gt;
        }&amp;lt;br&amp;gt;
        h2 {&amp;lt;br&amp;gt;
            color: #222;&amp;lt;br&amp;gt;
            border-bottom: 2px solid #ddd;&amp;lt;br&amp;gt;
            padding-bottom: 0.5rem;&amp;lt;br&amp;gt;
        }&amp;lt;br&amp;gt;
        .skills, .projects {&amp;lt;br&amp;gt;
            display: grid;&amp;lt;br&amp;gt;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));&amp;lt;br&amp;gt;
            gap: 1rem;&amp;lt;br&amp;gt;
        }&amp;lt;br&amp;gt;
        .card {&amp;lt;br&amp;gt;
            background: white;&amp;lt;br&amp;gt;
            padding: 1rem;&amp;lt;br&amp;gt;
            border-radius: 8px;&amp;lt;br&amp;gt;
            box-shadow: 0 2px 6px rgba(0,0,0,0.1);&amp;lt;br&amp;gt;
        }&amp;lt;br&amp;gt;
        a {&amp;lt;br&amp;gt;
            color: #007acc;&amp;lt;br&amp;gt;
            text-decoration: none;&amp;lt;br&amp;gt;
        }&amp;lt;br&amp;gt;
        a:hover {&amp;lt;br&amp;gt;
            text-decoration: underline;&amp;lt;br&amp;gt;
        }&amp;lt;br&amp;gt;
        footer {&amp;lt;br&amp;gt;
            text-align: center;&amp;lt;br&amp;gt;
            padding: 1rem;&amp;lt;br&amp;gt;
            background: #222;&amp;lt;br&amp;gt;
            color: white;&amp;lt;br&amp;gt;
            margin-top: 2rem;&amp;lt;br&amp;gt;
        }&amp;lt;br&amp;gt;
    &lt;br&gt;
&lt;br&gt;
&lt;br&gt;
    &lt;br&gt;
        &lt;h1&gt;MUNUKUNTLA TEJASWINI&lt;/h1&gt;
&lt;br&gt;
        &lt;p&gt;Aspiring Software Engineer | Java &amp;amp; Web Development&lt;/p&gt;
&lt;br&gt;
    
&lt;/blockquote&gt;

&lt;pre class="highlight plaintext"&gt;&lt;code&gt;&amp;lt;section&amp;gt;
    &amp;lt;h2&amp;gt;About Me&amp;lt;/h2&amp;gt;
    &amp;lt;p&amp;gt;Hello! I am a Computer Science student passionate about coding and problem-solving.
       I enjoy building web applications and working on Java projects.
       I’m currently preparing for placements and improving my GitHub profile.&amp;lt;/p&amp;gt;
&amp;lt;/section&amp;gt;

&amp;lt;section&amp;gt;
    &amp;lt;h2&amp;gt;Skills&amp;lt;/h2&amp;gt;
    &amp;lt;div class="skills"&amp;gt;
        &amp;lt;div class="card"&amp;gt;Java&amp;lt;/div&amp;gt;
        &amp;lt;div class="card"&amp;gt;HTML &amp;amp; CSS&amp;lt;/div&amp;gt;
        &amp;lt;div class=”card”&amp;gt;PHP&amp;lt;/div&amp;gt;
        &amp;lt;div class=”card”&amp;gt;MySQL&amp;lt;/div&amp;gt;
        &amp;lt;div class="card"&amp;gt;JavaScript&amp;lt;/div&amp;gt;
        &amp;lt;div class="card"&amp;gt;Git &amp;amp; GitHub&amp;lt;/div&amp;gt;
    &amp;lt;/div&amp;gt;
&amp;lt;/section&amp;gt;

&amp;lt;section&amp;gt;
    &amp;lt;h2&amp;gt;Projects&amp;lt;/h2&amp;gt;
    &amp;lt;div class="projects"&amp;gt;
        &amp;lt;div class="card"&amp;gt;
            &amp;lt;h3&amp;gt;Circle Parameter Finder&amp;lt;/h3&amp;gt;
            &amp;lt;p&amp;gt;A simple Java program to calculate circumference and area of a circle.&amp;lt;/p&amp;gt;
            &amp;lt;a href="#"&amp;gt;View on GitHub&amp;lt;/a&amp;gt;
        &amp;lt;/div&amp;gt;
        &amp;lt;div class="card"&amp;gt;
            &amp;lt;h3&amp;gt;Portfolio Website&amp;lt;/h3&amp;gt;
            &amp;lt;p&amp;gt;This personal website, built with HTML &amp;amp; CSS, hosted on GitHub Pages.&amp;lt;/p&amp;gt;
            &amp;lt;a href="#"&amp;gt;View on GitHub&amp;lt;/a&amp;gt;
        &amp;lt;/div&amp;gt;
    &amp;lt;/div&amp;gt;
&amp;lt;/section&amp;gt;

&amp;lt;section&amp;gt;
    &amp;lt;h2&amp;gt;Contact&amp;lt;/h2&amp;gt;
    &amp;lt;p&amp;gt;Email: &amp;lt;a href="malito:tejut2225@gmail.com"&amp;gt;tejut2225@gmail.com&amp;lt;/a&amp;gt;&amp;lt;/p&amp;gt;
&amp;lt;/section&amp;gt;

&amp;lt;footer&amp;gt;
    &amp;lt;p&amp;gt;© 2025 MUNUKUNTLA TEJASWINI&amp;lt;/p&amp;gt;
&amp;lt;/footer&amp;gt;
&lt;/code&gt;&lt;/pre&gt;



&lt;pre class="highlight plaintext"&gt;&lt;code&gt;      - Upload this file to your GitHub repository.
&lt;/code&gt;&lt;/pre&gt;

&lt;blockquote&gt;
&lt;p&gt;STEP 3: Enable GitHub Pages&lt;br&gt;
          - Go to your repository Settings.&lt;br&gt;
          - Scroll to pages.&lt;br&gt;
          - Under "Source", select main branch and save.&lt;/p&gt;

&lt;p&gt;STEP 4: Share Your Link&lt;br&gt;
          After enabling Pages, GitHub will give you a link like-              &lt;a href="https://github.com/tejut2225/tejaswini.github.io.git" rel="noopener noreferrer"&gt;https://github.com/tejut2225/tejaswini.github.io.git&lt;/a&gt;&lt;br&gt;
You can share this link in your resume , LinkedIn , and GitHub profile bio&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;&lt;strong&gt;OBSERVATIONS&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;GitHub pages is beginner friendly and free.&lt;/li&gt;
&lt;li&gt;You only need an index.html file to get started.&lt;/li&gt;
&lt;li&gt;Small projects like this help build confidence for larger ones.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;Tech stack&lt;/strong&gt;&lt;br&gt;
     -Built with HTML5 , CSS3 , and basic JavaScript&lt;/p&gt;

&lt;p&gt;I plan to improve my portfolio by adding CSS styling , JavaScript interactivity and more and showcasing my coding projects. My goal is to contribute to open-source projects and prepare for roles like Associate Software Engineer at rt Camp. This is just the beginning of my web development journey. I'd love feedback on my portfolio - let me know what you think...&lt;/p&gt;

</description>
      <category>html</category>
      <category>webdev</category>
      <category>portfolio</category>
      <category>beginners</category>
    </item>
  </channel>
</rss>
