如何将文件夹提交到 gitHub

发布于 2024-12-24 20:01:15 字数 126 浏览 0 评论 0原文

我是 GitHub 的新手,能够创建一个 README 文本文件并将其提交(从我的本地计算机到 github 站点),但现在我的问题是,我有一个文件夹,我需要将该文件夹提交到 git hub,你们中的任何一个人都可以吗?帮我解决这个问题。

I am new to GitHub, able to create a README textfile and commit that (from my local machine to github site) but now my problem is, i have one folder and i need to commit that folder to git hub, can any one of you help m e on this.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(5

粉红×色少女 2024-12-31 20:01:15

试试这个:

git add myfolder
git commit -m "some message"
git push

Try this :

git add myfolder
git commit -m "some message"
git push
桜花祭 2024-12-31 20:01:15

非常简单。按照一些步骤操作 -

  1. 只需单击上传文件按钮即可。
  2. 现在您可以看到一个可以拖动或上传文件的窗口。
  3. 只需拖动您所需的文件夹,它就会上传到存储库中(不要单击选择您的文件按钮,它只会上传您的文件,而不是文件夹。)

Its very simple. Follow some steps-

  1. Just click on the Upload files button.
  2. Now you can see a window where you can drag or upload the files.
  3. Just drag your required folder and it will upload in the repository (don't click on the choose your files button, it will upload your files only, not folder. )
凡尘雨 2024-12-31 20:01:15

git add FOLDERNAME

之后,您可以像处理 README 文件一样进行正常的提交+推送。

git add FOLDERNAME

After that, you can do a normal commit + push as you did it with the README file.

枫林﹌晚霞¤ 2024-12-31 20:01:15

试试这个:

git commit folder_path -m "your comment"

folder_path应该是完整路径,类似于../../../folder_path

Try this :

git commit folder_path -m "your comment"

folder_path should full path, something like this ../../../folder_path

请持续率性 2024-12-31 20:01:15

按照以下步骤将您的文件夹更新到 GitHub:

步骤 1:导航到包含代码的本地存储库(文件夹)并对其进行初始化

$ cd folderName (or) $ cd ~/FolderName 
$git init

步骤 2:将文件夹添加到 GitRepository 中的可跟踪文件/文件夹列表中

$ git add FolderName/

步骤 3:提交将文件夹(保存所做的更改)添加到 GitRepository

$ git commit -m "Some Message" 

第 4 步:将 GitHub 连接到本地计算机,在这里将远程名称 origin 添加到 GitHub 存储库。您可以从 GitHub 的“克隆或下载”链接获取此 URL

$ git remote add origin URL

步骤 5:将提交的文件/文件夹推送到 HitHub 存储库

$ git push -u origin master

刷新 GitHub 存储库,您可以保存提交到存储库的文件夹。
我希望这会有所帮助!

Follow this steps to update your folder to GitHub:

Step 1: Navigate to your local repository(folder) that contains your code and initialize it

$ cd folderName (or) $ cd ~/FolderName 
$git init

Step 2: Add the folder to be a part of trackable files/folders list in GitRepository

$ git add FolderName/

step 3: Commit the folder(save your changes made) to GitRepository

$ git commit -m "Some Message" 

step 4 : connect GitHub to your local machine, Here you add a remote name origin to GitHub Repository. You can get this URL from "Clone or Download" link from your GitHub

$ git remote add origin URL

Step 5: Push the committed files/folders to HitHub repository

$ git push -u origin master

Refresh the GitHub repository and you could save the folder committed to respository.
I hope this would be helpful!!

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文