标签:The def 远程 ken span 强制 efi har git add
1.先cd切换到工作的目录
2.进入项目文件夹,通过命令git init将项目初始化成git本地仓库
git init
2、将项目内所有文件都添加到暂存区
git add . //用.是当前目录,也可自己选择文件加入
3、对本次的提交进行备注,以便后期版本回退等操作
git commit -m ‘xxx‘ //xxx是本次提交备注的内容
例如:git commit -m "first commit"
4、在github上新建一个仓库,复制仓库地址,然后使用命令将本地仓库与远程仓库建立连接
git remote add origin https://xxxxxxxxxxxxxxx.git //注意地址末尾加入.git
可能会出现:
fatal: remote origin already exists.(报错远程起源已经存在。)
可先输入 git remote rm origin //rm删除原有
再输入 git remote add origin**************重来即可
The authenticity of host ‘github.com ‘ can‘t be established
这是由于你的git地址采用了ssh方式,切换为https方式即可,也可能是你的仓库地址不对,可以用命令先查看一下:
git remote -v
如果跟你的github地址不一样,那就去你的github上复制一下仓库地址
再输入
git remote set-url origin https://xxxxxxxxxxxxxxx.git (这个是你的复制的仓库地址)
最后push即可。
标签:The def 远程 ken span 强制 efi har git add
原文地址:https://www.cnblogs.com/zzzlight/p/12541974.html