GIT:将本地文件同步到新的github存储库

时间:2017-08-10 17:37:12

标签: git github

我经常想这样做,但永远不会记得如何。

首先我在我的计算机上创建一个文件,一些源代码,现在我想将它推送到github仓库。

所以我创建了一个github repo。 (在github上)点击"克隆"获取以后的URL。

现在我在本地计算机上运行以下命令。

git init // make a repo, local
git add * // add files to repo
git commit -a -m "initial commit" // commit files to repo and add msg
git remote add origin (...url...) // tell git where to push
git push --set-upstream origin master // no idea what this does
git config --global user.name "...name..." // set my name so github knows what my username is
git push // does not work error:

To push the current branch and set the remote as upstream, use

    git push --set-upstream origin master

仍然无法推动"。我做错了什么?

1 个答案:

答案 0 :(得分:0)

尝试克隆,然后cd进入回购。之后,add *。然后运行您想要的提交并推送。这应该工作。如果我不做任何分支就这样做,它看起来像这样:

> git clone 'repoName'
> cd repoName 
> git add *
> git commit -m "first commit"
> git push