-->

DEVOPSZONES

  • Recent blogs

    How to create folders in git ?

    How to create folders in git ?


    You cannot create an empty folder and then add files to that folder, but rather creation of a folder must happen together with adding of at least a one file. On GitHub you can do it this way:

    1. Go to the folder inside which you want to create another folder.
    2. Click on "Create New file".
    github

    3. On the text field for the file name, first write the folder name you want to create
    4. Then type "/" . This creates a folder.

    5. You can add more folders similarly
    6. Finally, give the new file a name
    7. Finally, click Commit new file.



    No comments