Hi Team,
Have created the repository and cloned successfully, need to understand the folder structure of the Bitbucket repository. Aim to establish a repository with several directories and subfolders that looks like the screenshot in the attachment. Does Bitbucket have the potential? If so, kindly offer advice on how to create folders and subfolders in the repository.
Thanks in advance.
Create the required structure and add your files. GIT will keep the folder structure for non empty folders.
You can also use empty dot files to help pushing empty folders
git add folderA/folderB/.ignore folderC/file2.txt folderC/folderD/file3.txt
...
Will create the repo as following:
/-
- folderA/
- folderB/
- .ignore
- folderC/
- file2.txt
- folderD/
- file3.txt
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.