其他分享
首页 > 其他分享> > C语言寒假大作战1

C语言寒假大作战1

作者:互联网

这个作业属于哪个课程 C语言寒假大作战01
这个作业要求在哪里 作业要求
这个作业的目标 通过视频学习,学会掌握码云,git技巧
参考文献 C语言寒假大作战01

码云界面


Git界面

本地仓库截图

学习命令

设置用户名

git config --global user.name "you name"

设置邮箱

git config --global user.email "email@example.com"

建立仓库

git init

检查仓库状态

git status

添加文件

git add

提交修改

git commit -m"sth"

查看提交记录

git log

回到某个起点

git reset --hard xxxx

主页地址

https://gitee.com/chen_cheng_dong/dashboard

标签:git,01,作业,作战,C语言,寒假,config
来源: https://www.cnblogs.com/asd20010830/p/12252660.html