gpt4 book ai didi

git - 在 bitbucket 中导入本地文件夹

转载 作者:行者123 更新时间:2023-12-05 01:42:41 25 4
gpt4 key购买 nike

我目前正在和一些同学一起做一个项目,我想和他们分享代码,他们不会更改代码,他们只是需要它来看看我的工作取得了多大进展。

我尝试为此在 github 上创建一个存储库,但除非您付费,否则它们不是私有(private)的,我不想这样做。我还尝试了 bitbucket,我不能在其中导入本地文件,只能导入一个已经存在的 github 存储库。

我如何在 Bitbucket 中添加本地文件或者我在哪里可以创建私有(private)存储库。

我还不太了解编程,整个版本控制和 git 主题对我来说都是新的。

最佳答案

要将本地文件夹导入到 bitbucket repo,您​​可以按照以下步骤操作。

先决条件:

  1. 安装 Git在你的本地机器上
  2. 检查本地文件夹是否已经在git repo中

    在要导入bitbucket repo的文件夹目录下,执行:

    git rev-parse --show-toplevel

    如果它显示 not a git reposiroty 则表示本地文件夹尚未在 git repo 中管理。否则,如果显示父目录,则表示本地文件夹已在 git repo 中管理

导入步骤:

  1. 如果本地文件夹不在本地 git 仓库中,则创建一个本地 git 仓库

    如前提条件 2 所示,如果本地文件夹尚未在本地 git 仓库中管理,则通过以下命令创建(假设文件夹 myfolder 是您要导入的文件夹,并且它在C:\test\example\myfolder):

    # in the directory C:\test\example
    git init
    git add .
    git commit -am 'initial commit'

    否则,如果该文件夹已在 git 存储库中进行管理,请跳过此步骤。

  2. 将 bitbucket 仓库添加为本地 git 仓库的远程仓库

    使用命令 git remote add origin bitbucket repo URL> 将新创建的 bitbucket repo 添加为本地 git repo 的远程 origin。如:

    git remote add origin https://accountu@bitbucket.org/account/reponame.git
  3. 将更改推送到 bitbucket 存储库

    使用命令将本地提交推送到 bitbucket 存储库:

    git push -u origin master

现在本地文件夹 myfolder 被成功推送到 bitbucket 仓库。

关于git - 在 bitbucket 中导入本地文件夹,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51245175/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com