问题 | 答案 |
---|---|
这个作业属于哪个课程 | https://edu.cnblogs.com/campus/zswxy/CST2019-2/homework |
这个作业要求在哪里 | https://edu.cnblogs.com/campus/zswxy/CST2019-2/homework/10246 |
这个作业的目标 | Gitee 与 git基础命令学习与使用 |
作业正文 | https://www.cnblogs.com/3165984153zb/p/12254810.html |
参考文献 | http://v.harson.co/static/video/git.mp4 |
1.1 码云界面
1.2 Git界面
1.3 本地仓库截图
1.4 学习命令
1.基础信息设置命令
设置用户名:git config --global user.name "Your name"
设置邮箱:git config --global user.email "Your email"
2.创建代码仓库
创建仓库:git init
查看状态:git status
3.提交与更改文件
添加单个文件至提交区:git add 文件名
提交文件至代码仓库命令:git commit -m "Your exegesis"
4.本地仓库与远程仓库互联
5.获取本地仓库密钥
1.5 主页地址
https://gitee.com/zhaobozhaobo
来源:https://www.cnblogs.com/3165984153zb/p/12254810.html