git第一次初始化项目注意事项
程序员文章站
2024-02-26 14:13:22
...
说明
第一次初始化项目的时候可能会遇到一些奇怪的问题,下面总结一下。
需要掌握的git命令
# 初始化git
> git init
# 查看git当前设置
> git config -l
# 查看当前git 的远端地址
> git remote -v
# 重命名remote地址
> git remote set-url orgin "http://newaddr.git"
# 添加需要push的文件
> git add new.py # 添加单个文件
> git add -a # 添加全部
# add 之后紧接着就是commit
> git commit -m "commit message"
# 将项目push到仓库
> git push origin master # 第一次push
> git push origin
遇到的问题
error: src refspec master does not match any
可能是没有执行你第一次commit
> git commit -m "first commit"
fatal: The current branch master has no upstream branch.
To push the current branch and set the remote as upstream, use xxx
如果你是第一次push
> git push origin master
参考地址
https://*.com/questions/5802426/git-error-src-refspec-master-does-not-match-any
https://*.com/questions/23528761/no-refs-in-common-and-none-specified-doing-nothing
上一篇: Git 操作整理笔记