See the 'Note about fast-forwards' in 'git push --help' for details.

记录一下终端提交代码的几行命令,不知道是不是由于老了,始终记不住了
1、git init
2、git add .
3、git commit -m "添加你的注释,一般是一些更改信息"
4、git remote add origin HTTPS链接
5、git remote
6、git pull origin master
7、git push origin master
其中第六步可能出现的错误


D1315969-20E4-4A1F-9156-E87475C5A6C7.png

执行

没有设置默认分支
git pull origin master --allow-unrelated-histories

或者

设置了默认分支
git pull --allow-unrelated-histories

8、git tag 设置标签

// 提交到本地
git tag -a '0.0.1' -m '设置版本' 
git tag '0.0.1'
// 查看设置的版本
git tag 
 // 提交到仓库
git push --tags 
// 提交指定的版本到仓库
git push origin 0.0.2

9、git log 查看地址值
10、git status 查看本地修改的代码类
11、git tag -d 0.0.1 删除本地当前版本
12、git push origin :0.0.1 删除仓库的版本,中间有:

你可能感兴趣的:(See the 'Note about fast-forwards' in 'git push --help' for details.)