git与远程仓库关联,并提交代码

首先进入要关联仓储的文件夹并执行如下命令(学习中)

git init    # 创建git相关文件

git remote add testGit [email protected]:Demo29748/testGit. git   # testGit 为远程仓储名称,

git remote -v  #查看远程地址信息

git add .    # 添加代码到版本管理器

git commit -m "提交代码备注" #  提交代码到本次仓储


git push testGit  # 推送代码,

此时系统会提示错误,同时执行如下命令

# git push --set-upstream testGit master


git push -u testGit master   # 执行此命令推送数据到主干上,此时系统会提示异常,服务器与本地不一致,此时有两个办法

方法1:强制上传

git push testGit master -f    #执行此命令


方法2:解决fetch

你可能感兴趣的:(git与远程仓库关联,并提交代码)