如何在BitBucket上创建文件夹?

时间:2015-12-03 12:59:36

标签: git bitbucket

如何在BitBucket(网络界面)上创建一个文件夹来分层组织我的存储库?

示例:

https://bitbucket.org/my_account/my_folder/my_repository

8 个答案:

答案 0 :(得分:17)

想出来,

打开回购>>转到来源>> +新文件>>在fileName下:

的folder1 /文件夹2 / file.extension

答案 1 :(得分:8)

BitBucket没有为您提供添加文件夹和管理文件夹内存储库的功能。进入帐户后,您可以继续添加存储库,但无法在文件夹中管理帐户中的存储库。

答案 2 :(得分:2)

转到来源并点击添加文件,然后点击文件名,首先将文件夹名称斜杠写为[/]文件名。

eg folder/file.php

这将自动创建一个新文件夹,如果不存在,将其命名为文件夹,file.php将在文件夹中。

Goto Source >> + New File >> Under fileName:

folder1/folder2/file.extension

答案 3 :(得分:1)

Bitbucket现在具有项目功能,可以按照您的描述分层次地组织存储库。该URL不会显示项目,但在Web中您可以看到它们。

答案 4 :(得分:0)

我理解这是一个古老的问题,但我想指出Geeth W实际上是错的。事实上,您可以在bitbucket中创建文件夹,但我发现这样做的方式是通过SourceTree。

  1. 创建新分支
  2. 指定新分支的名称时,请为其指定一个前缀名称的文件夹,例如: :backups /
  3. 当您完成分支创建时,您将在UI中看到它位于文件夹中,并且在Web面板中您还会看到它是该文件夹的成员。

    希望这有帮助。

答案 5 :(得分:0)

转到源并单击“添加文件”,然后在文件名中,首先将文件夹名称写为斜杠文件名。

例如folder / file.php

这将自动创建一个新文件夹(如果不存在),将其命名为文件夹,file.php将位于文件夹中。

答案 6 :(得分:0)

在Windows上使用命令行界面git:

:: clone the repository to local computer

:: create the folder locally
> md {foldername}
> cd {foldername}

:: create local file(s)
> notepad file1.txt   :o) or similar

:: move one folder up 
> cd ..

:: check status
> dir {FolderName}
> git status

:: add your newly created files, 
:: Note the name of the FOLDER prefixing the file name!    
> git add {foldername}\file1.txt

:: check status
> git status

> git commit -m "created {foldername} etc etc"
> git push

:: check status
> git status

答案 7 :(得分:0)

您可以将VScode链接到您的仓库,并在其中添加文件夹:

enter image description here

所以位桶看起来像...

enter image description here