git_introduction

git_introduction
git is a version control system that can only track changes to text files

#Installation of git under windows system
1. Download: https://git-scm.com/downloads
2. Command line input command:
$ git config --global user.name "Your Name"
$ git config --global user.email "[email protected]"

#Create repository
1. Turn this directory into a repository that Git can manage through the git init command:
$ git init
2. Add the file to the repository:
$ git add fileName
3. Submit the file to the warehouse: (multiple files can be submitted at one time)
$ git commit -m "commit message"


 

Guess you like

Origin http://43.154.161.224:23101/article/api/json?id=325134736&siteId=291194637