admin管理员组

文章数量:1612836

Git is the industry-standard version control system for web developers


Command to keep track of changes made to a project:

git init creates a new Git repository

git status inspects the contents of the working directory and staging area

git add adds files from the working directory to the staging area

git diff shows the differences between the working directory and the staging area

git commit permanently stores files changes from the staging area in the repository

git log shows a list of all previous commits

本文标签: lessonGitWorkflowfundamental