检查后,我如何上传我的项目的Git存储库到GitHub?,我仍然不知道如何让一个项目上传到我的GitHub存储库。
我创建了一个存储库,并想将我的项目上传到它。
我在存储库页面上查看了某种上传按钮,但我没有看到任何类似的东西。
到目前为止,我已经查看了提供的链接,但仍然一无所获。他们提到了命令行;是Windows命令行还是Git Bash?因为我不能让他们做任何事。
我也尝试使用Git GUI,但是当我选择我想要的文件夹时,它说它不是Git存储库…需要拉上拉链吗?我尝试在文件夹中添加.gitconfig文件,但没有什么不同。
你只需要知道几个命令im cmd推或拉任何目录到/从github。
命令来推送/上传任何项目或代码到git集线器。
首先到达需要上传的工作目录或项目目录。
检查正确的工作目录
ls
初始化目录下的git
git init
检查git init是否工作
ls -a //this command shows hidden files
使用上述命令,您将发现文件添加到您的目录。
./ ../ .git/
上面的命令不是可以跳过的。
现在添加工作目录的文件提交
git add .
然后使用commit命令并命名该commit以供参考
git commit -m "Commit Name"
在最后一步之前,你需要去github网站,创建一个新的存储库,并复制存储库的url
git remote add main https://github.com/username/repositoryName.git
现在命令上传目录
git push -u main
注意:名称“main”是每个用户都可以更改的名称
GitHub发布了一个本地Windows客户端,使以下所有步骤变得多余。
您还可以使用Sourcetree在Windows上获得Git和Mercurial的设置。
下面是你在Windows下的操作方法:
If you don't have Git installed, see this article on how to set it up.
Open up a Windows command prompt.
Change into the directory where your source code is located in the command prompt.
First, create a new repository in this directory git init. This will say "Initialized empty git repository in ....git" (... is the path).
Now you need to tell Git about your files by adding them to your repository. Do this with git add filename. If you want to add all your files, you can do git add .
Now that you have added your files and made your changes, you need to commit your changes so Git can track them. Type git commit -m "adding files". -m lets you add the commit message in line.
到目前为止,即使你不使用GitHub,上面的步骤也是你要做的。它们是启动Git存储库的正常步骤。请记住,Git是分布式的(去中心化的),这意味着使用Git不需要“中央服务器”(甚至不需要网络连接)。
现在,您希望将更改推到GitHub托管的Git存储库中。你可以通过告诉Git添加一个远程位置来做到这一点,你可以用下面的命令来做到:
Git远程添加origin https://github.com/yourusername/your-repo-name.git
*注意:在你做git远程添加origin之前,你应该在GitHub中创建your-repo-name…
完成此操作后,Git现在就知道远程存储库了。然后你可以让它推送(也就是“上传”)你提交的文件:
Git push -u origin master