<?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: Razaabbas Razaabbas</title>
    <description>The latest articles on DEV Community by Razaabbas Razaabbas (@razaabbas).</description>
    <link>https://dev.to/razaabbas</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%2F3917223%2F31a79ad4-31ab-4380-8032-678e35d8b1df.jpg</url>
      <title>DEV Community: Razaabbas Razaabbas</title>
      <link>https://dev.to/razaabbas</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/razaabbas"/>
    <language>en</language>
    <item>
      <title>Easiest Way to Push Files on GitHub — No Struggle Method</title>
      <dc:creator>Razaabbas Razaabbas</dc:creator>
      <pubDate>Thu, 07 May 2026 06:16:16 +0000</pubDate>
      <link>https://dev.to/razaabbas/easiest-way-to-push-files-on-github-no-struggle-method-5gp</link>
      <guid>https://dev.to/razaabbas/easiest-way-to-push-files-on-github-no-struggle-method-5gp</guid>
      <description>&lt;h2&gt;
  
  
  The Problem with Normal GitHub Method
&lt;/h2&gt;

&lt;p&gt;Most tutorials teach this confusing way:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;git init
git remote add origin https://...
git branch &lt;span class="nt"&gt;-M&lt;/span&gt; main
git push &lt;span class="nt"&gt;-u&lt;/span&gt; origin main
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;This is complex, confusing and gives errors especially for beginners!&lt;/p&gt;




&lt;h2&gt;
  
  
  Step 0 — New to GitHub? Make Account First!
&lt;/h2&gt;

&lt;p&gt;If you don't have a GitHub account yet:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Go to github.com&lt;/li&gt;
&lt;li&gt;Click "Sign Up"&lt;/li&gt;
&lt;li&gt;Enter your email, password and username&lt;/li&gt;
&lt;li&gt;Verify your email&lt;/li&gt;
&lt;li&gt;Done! Now you have a GitHub account ✅&lt;/li&gt;
&lt;/ul&gt;




&lt;h2&gt;
  
  
  My Simple Method (Works 100%)
&lt;/h2&gt;

&lt;h3&gt;
  
  
  Step 1 — Create Empty Repo on GitHub
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;Go to github.com&lt;/li&gt;
&lt;li&gt;Click "New Repository"&lt;/li&gt;
&lt;li&gt;Give it a name&lt;/li&gt;
&lt;li&gt;Click "Create Repository"&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  Step 2 — Clone Empty Repo to Your PC
&lt;/h3&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;git clone https://github.com/yourname/repo-name.git
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h3&gt;
  
  
  Step 3 — Add Your Files
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;Open that cloned folder&lt;/li&gt;
&lt;li&gt;Copy paste all your project files inside it&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  Step 4 — Push to GitHub
&lt;/h3&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;git add &lt;span class="nb"&gt;.&lt;/span&gt;
git commit &lt;span class="nt"&gt;-m&lt;/span&gt; &lt;span class="s2"&gt;"first commit"&lt;/span&gt;
git push
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;






&lt;h2&gt;
  
  
  Why This Method is Better
&lt;/h2&gt;

&lt;p&gt;✅ No git init needed&lt;br&gt;
✅ No remote setup confusion&lt;br&gt;
✅ No errors&lt;br&gt;
✅ Works 100% every time&lt;br&gt;
✅ Perfect for beginners&lt;/p&gt;




&lt;h2&gt;
  
  
  Summary
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;Account first → Clone → Fill files → Push&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;That's it! Simple, clean and professional.&lt;/p&gt;

&lt;p&gt;&lt;em&gt;— Method by Raza Abbas&lt;/em&gt;&lt;/p&gt;

</description>
      <category>github</category>
      <category>git</category>
      <category>beginners</category>
      <category>webdev</category>
    </item>
  </channel>
</rss>
