Setting up of Git Client

1 minute read
0

 Setting up of Git Client

Git is a version control tool that supports distributed non-linear workflows by providing data for developing quality. It lets you and your team of developers work together on the same project from anywhere.

 

Procedure:


Step1      Download Git for Windows

 Browse to the official Git website: https://git-scm.com/downloads

Click the download link for Windows and allow the download to complete.


Step 2 Download 32-bit or 64-bit git setup depending upon your system.

Step 3 Install git

Step 4  Create a folder (git doc).

Step 5 Open the folder and right-click, select show more options and open GIT BASH HERE.


 

 

Step6      Write basic git commands:

$ git config --global user. email “your email”

$ git config – global user. name “user’s name”

Step 7  Initialize a project (git repository) that will store all your commits.

$ git init

 

So, the git repo will be initialized in this folder.

 



 

Now you can create text documents and start working on git.

To Top