我创建了一个名为amarjobs的存储库。
现在没有档案。
我想在此存储库中上传我的工作文件
我已经做了一些步骤:
git init
git remote add origin url
git pull
git push origin master
但它引发了一个错误。我是git的初学者 我已经搜索过,但我的问题得不到满意的答案 有人能解决我的问题吗?
错误:
感谢。
答案 0 :(得分:1)
由于您没有远程分支的更改,因此无法推送
您可以在推送之前简单地执行git pull
,它将解决此问题。
按照这些步骤操作,您就可以将代码推送到github:
# Create a git repository in the folder
git init
# add the remote url
git remote add origin git@github.com:chonchol/amajobs.git
# add your code to the repository
git add .
# commit your code
git commit -m "Message..."
# now once you have your code committed updated your branch with the remote code
git pull
# now once you have the commit message of the merge - commit and push
git push origin master