Beginner guide to Git and GitHub

🚀 Web Designer and learning full Stack Web development.
Search for a command to run...

🚀 Web Designer and learning full Stack Web development.
No comments yet. Be the first to comment.
Promise.all() is a JavaScript method that takes an array of promises as input and returns a single promise that resolves when all of the input promises have resolved, or rejects if any of the input promises are rejected. It is useful for aggregating ...

Learn about how javascript object works, how we can create our own objects, take a sneak peek into console object and much more!

❓ Scope 📥 Scope defines the area, where functions, variables and other things are available or can be accessed. In layman's terms, scope means where to look for things, what things I can use and what I cannot! Let's take an example, here we are defi...

Learn about Array functions in JS with examples.

Beginners guide to Tailwind with a small project

Git is a distributed version control system. Using Git, many developers can make changes to the same code base at the same time without running into accidents like overriding someone else’s changes. Git will only update the differences made to a file.
Let's do a small demo to track and upload a simple markdown file to Github.

Create repository.
Go to your git bash terminal (and make sure that your git is already installed and configured, if not you can find links at the end of this blog.)
Traverse to the folder/directory where your file resides.

git init
git status

git add .

git commit -m "init commit"

git remote add origin git@github.com:prateek-budhiraja/resume.md.git
git branch -M main
git push -u origin main


You can go to the settings and then to Pages and do the below changes.

A couple of minutes after you save the settings, you will be able to access your Github pages website on the URL.
