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