第一点
看一看实例文章的结构
- 我说
- 我就说
- 哈哈哈
第二点
看见了
不太理解
难道时间格式显示的不正确吗 为什么无法提交呢
git语法
看样子要留心学习一些基本的git语法才可以
#查看远程仓库的信息
git remote -v
# 如果是https的话 会显示下文
origin https://github.com/username/reponame.git (fetch)
origin https://github.com/username/reponame.git (push)
# https 切换到 ssh
git remote set-url origin [email protected]:username/reponame.git
#再次查看远程仓库的信息
git remote -v
#切换到ssh成功
origin [email protected]:username/reponame.git (fetch)
origin [email protected]:username/reponame.git (push)