1.从库拿 code :
git clone repos@xxx.xxx.x.xxx: server_code_lib local_code_lib
2.git diff
看 working tree 与 index file 区别 : git diff
看 index file 与 git repository区别 : git diff --cached
看 working tree 与 git repository区别: git diff HEAD
3.查看 code 状态
git status
4. 添加 code
git add 目录 或 git add . (当前目录)
5.添加说明信息
git commit -m "notes: for test"
6.查看日志
git log
7.从 server 更新最新的 code
git pull origin master
本文提供了Git操作的基本流程与常用命令介绍,包括从代码库获取代码、查看代码状态、添加文件到版本库、提交更改、查看提交历史以及从远程仓库拉取最新代码等关键步骤。
12万+

被折叠的 条评论
为什么被折叠?



