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

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

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

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

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


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


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


git push --force origin master

如果你上传有问题!


遵循以下两个步骤:

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

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


也许你能做的最有用的事情就是阅读在线书籍Pro Git。这是一本相当不错的读物,它为你提供了正确执行事情的概念背景。


按照以下步骤将项目上传到GitHub:

git init Git添加。 添加我所有的文件 Git远程添加origin https://github.com/yourusername/your-repo-name.git 上传的项目从零开始需要git拉源主。 Git拉源主 Git push origin master


在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


遵循RishiKesh Pathak的指示。你甚至可以通过只插入一次这个命令行来缩短push命令:

git config --global push.default simple

所以下次不要使用git push origin master,你只需要:

git push

详情请点击这里。


使用Git的最佳方式是实际启动giting。试试这个网站,它会让你一步一步地了解在命令行上执行功能的基本方法,以便在GitHub上推送项目。

这个叫做try.github.io,或者你也可以参加Codecademy的课程。


下载Sourcetree。

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


Open Git Bash. Change the current working directory to your local project. Initialize the local directory as a Git repository: $ git init Add the files in your new local repository. This stages them for the first commit: $ git add . Commit the files that you've staged in your local repository: $ git commit -m "First commit" At the top of your GitHub repository's Quick Setup page, click to copy the remote repository URL. In the Command prompt, add the URL for the remote repository where your local repository will be pushed : $ git remote add origin remote repository URL Push the changes in your local repository to GitHub: $ git push origin master


在这里我解释一下我是如何在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帐户,文件应该在那里:)


我假设你和我一样使用Windows系统,并且安装了Git。您可以在项目目录中通过简单的命令提示符运行这些命令,也可以使用Git Bash。

步骤1:

在Git中手动创建一个存储库。随你怎么称呼它。

步骤2:

进入您的本地项目目录。如果您希望将代码发布到刚刚创建的新存储库中,请确保在项目根目录中没有文件夹名.git。如果有,请删除。 执行命令git init。

步骤3:

运行命令

转到添加 。

步骤4:

运行命令

git commit -m YourCommitName

步骤5:

运行命令

git远程添加YourRepositoryName https://github.com/YourUserName/YourRepositoryName.git

步骤6:

运行命令

git push——set-upstream YourRepositoryName master——force

请注意,我在撰写本文时使用的是最新版本的Git。还要注意,我没有指定要将代码推入的任何特定分支,所以它会进入master。在第6步中,Git会要求您在一个弹出窗口中输入用户名和密码来授权命令。


为了将一个新项目上传到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.


首先,你必须在GitHub上创建一个账户 然后创建一个新项目-按您的需要命名该项目,然后显示您的项目URL 现在复制URL 然后打开命令提示符,使用cmd进入要上传的目录或文件夹 然后输入以下命令 git init Git添加。 Git commit -m "初始提交" git远程添加原点粘贴URL Git push -u origin master 现在检查你的GitHub账户。上传存储库成功。

要获得完整的指导,你可以观看这个视频。


我这样做了;

git init Git添加。 git commit -m "Your_message" Git远程添加源@your_git_repository Git push -u origin master

当然,你必须安装Git。


我花了1-2个小时才意识到我应该在GitHub上创建存储库,然后再尝试将我的本地文件推送到GitHub(或其他你正在使用的Git服务)。

在尝试推之后,错误如下:

remote: Repository not found.
fatal: repository 'https://github.com/username/project.git/' not found

我觉得自己像个白痴,但我真的想对像我这样的初学者强调这一点。我只是认为我的存储库将在第一次推送时自动创建。我大错特错了。

你可以用这个命令查看你的遥控器:

git remote -v

这对我很管用;

1- git init
2- git add .
3- git commit -m "Add all my files"
4- git remote add origin https://github.com/USER_NAME/FOLDER_NAME
5- git pull origin master --allow-unrelated-histories
6- git push origin master

We need Git Bash In the Git Bash Command Section: ls It will show your default location. CD "C:\Users\user\Desktop\HTML" We need to assign the project path. git init It will initialize the empty Git repository in C:\Users\user\Desktop\HTML ls It will list all file names. git remote add origin https://github.com/repository/test.git It is your https://github.com/repository/test.git is your repository path git remote -v To check whether we have fetch or push permission or not git add . If you use . then it means whatever we have in the particular folder publish all. git commit -m "First time" git push -u origin master


按照以下步骤将项目上传到GitHub:

git init Git添加。 添加我所有的文件 Git远程添加origin https://github.com/yourusername/your-repo-name.git

上传的项目从零开始需要git拉源码master。

Git拉源主 Git push origin master

如果在推送过程中出现任何问题,请使用git push——force origin master。


确保系统上安装了Git。我正在用windows操作系统解释这个过程[尽管它不应该是依赖于操作系统的工作]

以下是我的做法:

Open the cmd (you can do with git bash as well if you've installed git bash). Go to your project directory (where your project is located, it's essentially changing to directory either usiing cd path or through manual folder navigation). Now type git init. This will initialize an empty repository if it is first time and Enter. For example: git init Now type git add <filename>(if specific file) or git add <filename1> <filename2> <filenameN> (if specific but more than one files) or git add . (if you want to add all files) and enter. Now type git commit -m "commit message goes here" and enter. (in case if you need to check the status you can do by typing git status) and enter. Now type git remote add origin git_repository_url (check git remote -v go check remote repository) and Enter. Now it's turn to push it to the remote repository [essentially taking all the changes from local git to cloud(github) ...git push origin master and enter (if you get error you push it forcefully by typing ...git push -f origin master and enter.

注意:master是你的主分支的名称。如果您有多个分支,请确保选择相应的分支名称。

现在,您已经完成了将它从本地计算机添加到远程存储库的工作。刷新它,它将出现在您创建的存储库的选定分支中。


上传项目到Git的步骤:

步骤1 -打开cmd并将当前工作目录更改为您的项目位置。

步骤2 -将项目目录初始化为Git存储库。

git init

步骤3 -在本地存储库中添加文件。

add .

步骤4 -提交您在本地存储库中暂存的文件。

git commit -m "First commit"

步骤5 -复制远程存储库URL。

步骤6 -在本地位置中添加远程存储库URL作为源。

git add origin copied_remote_repository_url

步骤7 -确认您的来源是否更新。

git remote show origin

第8步-推更改到您的GitHub存储库

git push origin master.

你需要一个SSH连接和GitHub初始化到你的项目。我将在Linux机器下解释。

让我们从一些简单的东西开始:在终端中导航到你的项目,并使用:

git init
git add .
git commit

现在让我们将SSH添加到您的机器中:

use

ssh-keygen -t rsa -C "your_email@example.com"

复制公钥,然后将其添加到你的GitHub存储库:

部署键->添加一个

回到你的机器项目,现在启动:

git push origin master

如果有一个错误,配置你的.github/配置文件

nano .github/config

并将URL更改为SSH的一个:

url = git@github.com:username/repo....

就是这样。


尝试使用Git Bash来推送您的代码/进行更改,而不是直接在GitHub上上传文件(它不太容易出错,有时也很舒服-也需要更少的时间!)要做到这一点,你可以遵循以下步骤:

Download and install the latest version of Git Bash from here. Right-click on any desired location on your system. Click “Git Bash Here”. git config --global user.name “your name” git config --global user.email “your email” Go back to your GitHub account – open your project – click on “clone” – copy HTTPS link. git clone PASTE HTTPS LINK. A clone of your GitHub project will be created on your computer location. Open the folder and paste your content. Make sure content is not empty. Right-click inside the cloned folder where you have pasted your content. Click “Git Bash Here” again. You will find (master) appearing after your location address. git add . Try git status to check if all your changes are marked in green. git commit --m “Some message” git push origin master


简单的步骤:git拉源master或main会给出一个致命错误:

无法找到远程参考主机

下面的步骤就可以了。

git init Git添加。 Git commit -m "初始提交" Git远程添加origin https://github.com/yourusername/your-repo-name.git git分支-M main Git push -u origin main


你只需要知道几个命令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”是每个用户都可以更改的名称


从Visual Studio Code上传一个项目到GitHub

要使用Visual Studio Code在GitHub中上传项目,请遵循以下步骤。

打开Visual Studio代码。如果你没有VSCode下载:下载Visual Studio Code 在VSCode打开文件>打开文件夹.. 进入终端—>新终端 请依次执行以下命令

git init

转到添加 。

git commit -m“第一次提交”

Git远程添加origin https://github.com/yourusername/your-repo-name.git

Git push origin master

注意:在上面的命令git remote add origin https://github.com/yourusername/your-repo-name.git中,请用你的GitHub帐户名和你的存储库名称更改粗体部分。