Files
ClassContent/历届学生/陈一航/2020-03-27/笔记.txt
2024-09-27 02:06:13 +08:00

22 lines
385 B
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

版本控制管理工具(团队项目开发使用的)
git
web端管理界面github.com
svn 老的工具(用的比较少)
git init: 在本地某个文件夹中创建仓库(本地仓库)
.git/
git add -A 将文件夹中所有文件添加到暂存区
git commit -m "备注"
git status
git pull 拉取远程仓库到本地
git push 推送本地代码到远程仓库