检查后,我如何上传我的项目的Git存储库到GitHub?,我仍然不知道如何让一个项目上传到我的GitHub存储库。

我创建了一个存储库,并想将我的项目上传到它。

我在存储库页面上查看了某种上传按钮,但我没有看到任何类似的东西。

到目前为止,我已经查看了提供的链接,但仍然一无所获。他们提到了命令行;是Windows命令行还是Git Bash?因为我不能让他们做任何事。

我也尝试使用Git GUI,但是当我选择我想要的文件夹时,它说它不是Git存储库…需要拉上拉链吗?我尝试在文件夹中添加.gitconfig文件,但没有什么不同。


当前回答

在GitHub上创建一个新的存储库。为避免错误,请不要初始化 包含README、license或gitignore文件的新存储库。你可以 在你的项目被推送到GitHub后再添加这些文件。开放 终端(Mac用户)或命令提示符(Windows和Linux用户) 用户)。 将当前工作目录更改为本地项目。 将本地目录初始化为Git存储库。 git init #在新的本地存储库中添加文件。这将为第一次提交准备它们。

git添加 #在本地存储库中添加文件,并将其提交。要取消文件,使用'git reset HEAD YOUR-FILE'。提交在本地存储库中暂存的文件。

git commit -m '第一次提交' #提交跟踪的更改,并准备将它们推送到远程存储库。要删除这个提交并修改文件,使用'git reset——soft HEAD~1'并再次提交并添加文件。

在GitHub存储库的快速设置页面的顶部,单击复制远程存储库URL。在你的GitHub仓库的快速设置的顶部 页,单击,复制远端存储库URL。 在命令提示符中,添加将在其中推送本地存储库的远程存储库的URL。

$ git远程添加源远程存储库URL #设置新的远程git远程-v 注意:GitHub for Windows用户在这里应该使用命令git remote set-url origin而不是git remote add origin。将本地存储库中的更改推到GitHub。

$ git push origin master #将本地存储库中的更改推到指定为原点的远程存储库。

源代码属性:使用命令行将现有项目添加到GitHub

其他回答

为了将一个新项目上传到Git中(首先你需要有项目的本地代码库和上传项目的Git存储库。在Git中,你需要有你的凭证)。

List item Open Git Bash Go to the directory where you have the code base (project location) cd to project location cd ////** Then here you need to execute Git commands. git init Press Enter then you will see something like this below. The initialized empty Git repository in ://****/***/.git/, so git init will initialize the empty Git repository at local git add . Press Enter The above command will add all the directories, subdirectories, files, etc. You will see something like this: warning: LF will be replaced by CRLF in **************. The file will have its original line endings in your working directory. git commit -m "first commit" Press Enter. -m provided option for adding comment. It will commit the code to the stage environment. You will see some thing like this: [master (root-commit) 34a28f6] adding ******** warning: LF will be replaced by CRLF in c*******. The file will have its original line endings in your working directory. 27 files changed, 3724 insertions(+) create mode 100644 ***** create mode 100644 ***** create mode 100644 ***** git remote add origin http://username@git:repopath.git Press Enter. This will add to the repository. git push -u origin master Press Enter. This will upload all from local to repository in this step you need to enter password for the repository where you will be uploading the code. You will see some thing like this below: Counting objects: 33, done. Delta compression using up to 12 threads. Compressing objects: 100% (32/32), done. Writing objects: 100% (33/33), 20.10 KiB | 0 bytes/s, done. Total 33 (delta 14), reused 0 (delta 0) To http://username@git:repolocation.git \ [new branch] master -> master Branch master set up to track remote branch master from origin.

遵循以下两个步骤:

使用链接:https://github.com/new在线创建存储库 然后使用命令将本地回购链接到远程回购:git add remote origin https://github.com/userName/repo.git 这里是回购。Git将是您新创建的远程repo。

这将非常有效。不需要担心SSH或HTTPS方式。我第一次遇到同样的问题,花了几个小时来解决。 但这对我很管用。

在这里我解释一下我是如何在Windows上做到这一点的。

确保安装了Git和GitHub。

安装完成后,打开Git Bash。

这样就会弹出一个如下图所示的窗口:

继续,输入cd ~以确保您在主目录中。您可以通过输入pwd来检查您所在的地址;

现在你需要创建一个GitHub账户。创建一个GitHub帐户后,继续并登录。

登录后,在右上角点击+,选择“New Repository”

然后在打开的窗口中,在“repository name”框中键入您希望拥有的存储库名称。如果你喜欢,添加“描述(可选)”,并标记“用README初始化这个存储库”。然后点击“创建存储库”。

现在去你的C盘;创建新文件夹git。现在转到“Git Bash”窗口;将目录更改为c驱动器,输入CD ~;cd / c。 如果你在那里输入ls,它会显示那里的文件夹。确保它显示了Git文件夹:

现在回到浏览器;转到你的GitHub页面,点击你制作的存储库,点击“克隆或下载”,并复制显示在那里的地址(通过选择复制到剪贴板)。

现在回到Git Bash。使用cd git命令进入git文件夹;现在写以下命令连接到你的GitHub(输入用户名和密码时,它要求你):

git config --global user.name "Your Name"

然后是:git config——global user。电子邮件youremail@domain.com。

下一种类型:git克隆(URL),而不是(URL),键入你从你的GitHub页面复制的GitHub存储库的地址;(例如,git clone https://github.com/isalirezag/Test.git)。

现在如果你执行ls命令,你会看到你的存储库。如果你也打开窗口中的Git文件夹,你会看到你的存储库被添加为一个文件夹。

现在使用cd命令转到存储库:cd Test

继续,复制和粘贴任何文件,您想放在这个存储库在该文件夹。

为了将文件传输到您的存储库,您现在需要做以下工作:

git型

添加文件名(filename是你想要上传的文件名),或者如果你想添加文件夹中的所有文件,你可以输入下面的命令:

转到添加 。

然后输入:git commit -m "adding files"。然后:git push -u origin master。

然后你就万事俱备了。如果你刷新你的GitHub帐户,文件应该在那里:)

我认为最简单的方法就是为Eclipse安装Git插件。它的工作原理或多或少与Eclipse CVS和SVN插件相同。

下载Sourcetree。

它适用于Windows 7(及更高版本)和Mac,强烈建议通过交互式UI在GitHub上上传文件。