Tag Archives: Git

Git – Commands

By | 08/03/2023

In this post, we will see some Git commands that can help us to manage our projects. git init:It is used to start a new repository. git config:It is used to set the name and the email to use with our commits. git add:It is used to add files to the staging area. git commit:It… Read More »

Git – How to create a local repository

By | 01/08/2019

In this post, we will see how to create a local repository using Git. We open Git Bash, go into directory where we want to create a local repository and we run these commands: The local repository has been now created! If the second command has generated a permission error like this: we have to… Read More »