Skip to content
/ Git Public

Git is a distributed version-control system for tracking changes in source code during software development. It is designed for coordinating work among programmers, but it can be used to track changes in any set of files. Its goals include speed, data integrity, and support for distributed, non-linear workflows.

Notifications You must be signed in to change notification settings

kaamrul/Git

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 

Repository files navigation

Git

How to install git on windows 10

1.insatll git form the website: https://git-scm.com/downloads

2. Open git bash and add these command :

> git config --global user.name "abc"

> git config --global user.email "abc@domain.com"

> git config --list

> git config user.name

3.Check the current directory

> pwd

4. list directory

> ls

5.Create a folder in your desire directory . I install it on my user directory:

	/c/Users/Kamrul

6.Create a folder in this directory i named it gitrepo

> mkdir gitrepo

7.Go to the gitrepo directory

> cd gitrepo

8. Initialize the gitrepo

> git init

9.Clone Repository

> git clone https://github.com/kaamrul/Git.git

> git add .

> git status

> git pull origin master

> git status

10.Pull to Remote Server

> git status

> git add .

> git status

> git commit -m "update"

> git pull origin master

> git push 

> git status

11.Push to Remote Server

> git status

> git add .

> git status

> git commit -m "update"

> git pull origin master

> git push 

> git status

About

Git is a distributed version-control system for tracking changes in source code during software development. It is designed for coordinating work among programmers, but it can be used to track changes in any set of files. Its goals include speed, data integrity, and support for distributed, non-linear workflows.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published