How to deploy your website using GitHub? Welcome to another part of the github tutorials. In this part, you will learn how to deploy our simple website written in HTML and CSS on GitHub. The first step is to push your project to the github remote repository, then…
Updates
#10 Pull and Push to GitHub Branches (Git and GitHub Tutorials from Scratch)
How to Push and pull an updated branch from a remote repository? Welcome to another part of the git tutorials. In this part, you will learn how to pull the the latest update of a branch of a remote repository using a simple command. After having done that,…
#9 Pull from a GitHub Repository (Git and GitHub Tutorials from Scratch)
How to Pull an Updated Remote Repository in GitHub? Welcome to another part of the git tutorials. In this part, you will learn how to pull the the latest update of a remote repository using a simple command. After having done that, you can make the necessay changes…
#8 How to Push a local Git to GitHub (Git and GitHub Tutorials from Scratch)
How to Push a local Git to GitHub? Welcome to another part of the git tutorials. In this part, you will learn how to push your local git project to a remote github repository. The steps that you will need to take is not very much different from…
#7 The GitHub Website (Git and GitHub Tutorials from Scratch)
GitHub Website Welcome to another part of the git tutorials. In this part, you will learn how to create a profile in Github website and also how to create your custom access token key so that you can later push your projects to GitHub using this key. Notice…
#6 How to Create a Git Repository (Git and GitHub Tutorials from Scratch)
Creating Git repositories Welcome to another part of the git tutorials. In this part, you will learn how to create a repository in github. To do so, you can initialize a git repository in your project folder and then after adding and commiting the changes as well as…
#5 Git Extension for VSCode (Git and GitHub Tutorials from Scratch)
Git VSCode Extensions Welcome to another part of the git tutorials. In this part, you will learn how to install a useful tool for version control and git on vs code. using this tool, you can visually observe the changes in each one of the versions of your…
#4 How to Merge Git Branches (Git and GitHub Tutorials from Scratch)
Merge Git branches Welcome to another part of the git tutorials. In this part, you will learn how to create different branches on our own repository. Branches help us to create different parallel versions of the same project to be developed by other developers or by ourselves. After…
#3 Working with a Git Branch (Git and GitHub Tutorials from Scratch)
Git branches Welcome to another part of the git tutorials. In this part, you will learn how to create different branches on our own repository. Branches help us to create different parallel versions of the same project to be developed by other developers or by ourselves. After…
#2 Getting Started with Git (Git and GitHub Tutorials from Scratch)
Getting started with Git Welcome to the second part of the git tutorials. In this part we will learn how to create a local Git repository using some simple commands. First of all, we need to make sure that Git is already installed and if not we will…