我是GitHub和Git的新手。我在github.com上创建了一个存储库并添加了一些文件。然后,我使用git bash(在Windows上)使用git clone github.com/username/repository.git
下载这些文件。所以我的计算机上有文件。现在,我编辑了一些文件,我想将新文件发送到GitHub存储库的master分支。我实际上已经阅读过这些问题:
How to push to GitHub using Git Bash?
Error when push commits with Github: fatal: could not read Username
但我无法找出任何解决方案。
答案 0 :(得分:1)
跟踪您要进行的更改
git add --all
提交您的更改
git commit -m“$ message”
将您的更改推送到github分支
git push origin localbranchname:remotebranchName
在github上创建拉取请求以掌握
听起来你可能已经使用这些教程删除了你的起源。在github上,复制仓库的地址。
git remote set-url origin https://github.com/... (the link)
在第3步之前
答案 1 :(得分:0)
我会做的是
git remote rm origin git remote add origin'git @ github.com:username / repo.git'