创建版本库:
>>mkdir git
>>cd git
>>git init
添加模块:
git clone https://github.com/username/project1.git
cp -r ~/Downloads/module2/ .
git add module2/ --all
git commit -m "add blowfish"
git remote add origin https://github.com/username/project1.git
本文介绍如何通过命令行操作创建新的Git版本库,并向版本库中添加远程项目及本地模块,包括初始化仓库、克隆远程仓库、添加文件并提交等步骤。
474

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



