与git服务端建立连接
git remote add origin https://github.com/JackySuen1994/yylcha.smoothSignature.git
查看目录中运行的命令
git remote -v
删除origin的通信方式
git remove rm orgin
放弃已push但是未commit的版本
git reset --hard ddfe919
拉取
git pull
推送
git push
提交-m '说明'
git commit
查看状态
git status
查看git提交日志
git log
评论区