C语言寒假大作战01
这个作业属于哪个课程 | https://edu.cnblogs.com/campus/zswxy/CST2019-2 |
---|---|
这个作业要求在哪里 | https://edu.cnblogs.com/campus/zswxy/CST2019-2/homework/10246 |
这个作业的目标 | Gitee 与 git基础命令学习与使用 |
作业正文 | https://www.cnblogs.com/ffyl/p/12252918.html |
参考文献 | http://v.harson.co/static/video/git.mp4,https://www.jianshu.com/p/cebb8371c16e |
1.1 码云界面
1.2GIT界面
1.3本地仓库截图
1.4学习命令
1.基础信息设置命令
设置用户名:git config --global user.name "Your name"(第一次用)
设置邮箱:git config --global user.email "Your email"
2.创建代码仓库
创建仓库:git init(在.git文件夹打开)
查看状态:git status
3提交与更改文件
添加单个文件至提交区:git add 文件名
提交文件至代码仓库命令:git commit -m "Your exegesis"
4提交日志查询:git log
5本地与码云仓库互联
1.复制码云仓库链接
2.图示操作
3.获取密钥
4.将密钥复制
5本地与码云链接
END