【Git/Github】第一次提交和再次添加文件
文章目录
git 提交指令
git init
git add . # 将当前文件添加到 .git 文件中
git commit -m "first commit"
git branch -M main
git remote add origin https://github.com/jucway/java-UDP-.git
git push -u origin main
添加文件将之前的仓库pull 下来之后合并之后在提交
git pull https://github.com/jucway/...git
- 出现错误1:已解决
error: failed to push some refs to ‘https://github.com/jucway/Boss-.git’
这是创建的仓库的名称包含中文,也就是该仓库不存在导致报错,遇到这个错误可以检查仓库是否创建成功!!
- 2021.12.30
一个目标达到之后,马上立下另一个目标,这是成功的人生模式。
本文来自博客园,作者:jucw,转载请注明原文链接:https://www.cnblogs.com/Jucw/p/16216529.html