How to rename a directory/folder on GitHub website?
Asked Answered
C

20

174

I was able to find a way on GitHub Website to rename a single file and did so with success.

I was also able to find a way to rename a whole repository and did that with success.

Does anyone know how to do this to a single directory without using command line? For reference, I am trying to change a directory named InterviewTesting (that contains source files, etc) to something else. I tried doing it the single file way. enter image description here
But this didn't allow me to change the name of the directory (InterviewTesting), only the actual file name.

Crosby answered 6/8, 2015 at 16:59 Comment(3)
You should change your choice of correct answer, because @JonathasWalker is right.Ratiocinate
Is it still the correct answer? I cannot do it, it only creates directory.Catch
Possible duplicate of In a Git repository, how to properly rename a directory?Catch
H
235

Actually, there is a way to rename a folder using web interface.

1) Type a folder name followed by slash to go down into a subfolder. 2) Type dot dot, then slash, to jump upwards one directory. 3) Use the backspace key to edit the parent directory's name.

See https://github.com/blog/1436-moving-and-renaming-files-on-github

Houle answered 16/9, 2015 at 23:5 Comment(11)
Well, yeah, sort of, but that's not rename, just "mkdir", and will only move one file from the old dir to the new. You'd still need to piss blood moving all the other files there, too, I suppose. Smells horror to me. Nice animation though! :)Vicious
Apparently, you cannot do that anymoreDieterich
For me it does not work as well. Instead I create file "..filename.ext"Boer
What hard to see here is the keystroke sequence. This was a bit confusing for me. if you press ".." then "/", it will go up a directory. Type the folder name then "/", it will go down a directory.Ayana
Don't forgot to type "/" after the ".."Darlenadarlene
Just put your cursor at the beginning of the filename (all the way to the left) and hit backspace :]Blameless
The web interface has COMPLETELY changed and there is no longer an edit button.Roeder
Still working in 2022Insulate
This is not an answer as it creates a new folder and moves the one file to this folder. It is currently not possible to rename a folder if it has no file or more than one fileHumerus
The best answer is from @Asef Hossain. Shows how to move an entire folder to a new location using the UI. Just drag and drop using the left menu bar. With this method you do have to move the files/folders. Then select the source control icon which allows you to type a commit message and finally commit+push.Garate
This should not be the accepted answer because it does not do what is being asked. In fact, it creates more problems.Exaggerative
T
92

Open your github repo. Press the . key on your keyboard to open it with web vs code. Rename there. Stage and commit the changes.

This will work better than the other options, as it will do the rename for directories which contain multiple other directories i.e. directories with subdirectories within them.

Thematic answered 23/10, 2021 at 14:23 Comment(8)
Good to know about the code view. Best solution for the question above.Upchurch
This should be answer. It allows you to move entire directories at a time.Garate
Sounds promising. What does "Press . to open it with web vs code" mean?Athiste
Okay, got it. That dot is the button/icon to the dev page. A quick way to it that doesn't involve clicking is to replace https://github.com/username/reponame/ with https://github.dev/username/reponame/Athiste
Thank you! This was the only way I found that worked for my scenario (invalid character in folder name on Windows).Nightwalker
this is the easiest way to go about this. Thanks!Autarky
Amazing, never knew this existed!Dinsdale
This is the way better answer and should be the accepted one!Exaggerative
G
68

There is no way to do this in the GitHub web application. I believe to only way to do this is in the command line using git mv <old name> <new name> or by using a Git client(like SourceTree).

Gawain answered 6/8, 2015 at 17:13 Comment(2)
It's true you can't rename a folder and all of its files directly in the UI. The accepted answer does work for individual files, though you have to edit every file in the directory, moving each to a new parent folder. When the last file is removed, the old directory will disappear.Darlenadarlene
The question does say "without using command line" though.Exaggerative
I
20

You can! Just press edit as per @committedandroider's original post and then hit backspace with your cursor at the start of the filename. It will let you then edit the folder. When done hit forward slash to then edit the filename again.

Inbreathe answered 18/10, 2017 at 7:40 Comment(2)
That only works in case you have one single document in that directory. If you have more, the others will remain in the previous directory.Villainous
This answered helped me out of a jam. Thanks!Curvaceous
B
16

I had an issue with github missing out on some case sensitive changes to folders. I needed to keep migration history so an example of how I changed "basicApp" folder in github to "basicapp"

$ git ls-files
$ git mv basicApp basicapp_temp
$ git add .
$ git commit -am "temporary change"
$ git push origin master
$ git mv basicapp_temp basicapp
$ git add .
$ git commit -am "change to desired name"
$ git push origin master

PS: git ls-files will show you how github sees your folder name

Bemire answered 26/4, 2018 at 20:42 Comment(2)
yea i don't even remember why i asked this question. It's much easier to do this via command lineCrosby
I want to rename my git repo, never used command line, what is the precedent procedures of getting there? can you elaborate with more details? Thank you.Joycelynjoye
O
7
git mv <oldname> <newname>
git add <newname>
git commit -m "Renaming folder"
git push -u origin main
Ousel answered 6/6, 2021 at 5:13 Comment(1)
The question says "without using command line."Exaggerative
B
5

Just edit a file inside the folder, click on file name and press backspace continuously. That will move to the cursor to the folder name and you can edit it. It can cause problems with hyperlinks.

Butterfish answered 3/3, 2022 at 6:10 Comment(1)
This is the correct answer, you just go edit a file and spam backspace to get to the directory you want to editCelibate
P
5

You can do the following:

  1. Go to any file from the repository.
  2. Click the drop-down menu from the top-right of the file window.
  3. Click on Open in github.dev Github dev location
  4. When it switches to Gihub dev environment, you can rename the required folder from the explorer section.
Pyrography answered 2/11, 2022 at 17:58 Comment(2)
If you have a new question, please ask it by clicking the Ask Question button. Include a link to this question if it helps provide context. - From ReviewStrep
Or just replace https://github.com/username/reponame/ with https://github.dev/username/reponame/Athiste
C
3

If you have GitHub Desktop, change the names of the directories on your computer and then push the update from your desktop to your github account and it changes them there. :)

Hope it helps!

Calendra answered 29/5, 2018 at 3:59 Comment(3)
Ended doing this. Along with VS Code. Works fine & quick w/o the CLI stuff if you don't want thatAthamas
it does not let me press commit. any ideas why?Holmes
same here... renaming through system explorer does reflect the changes in the GIT HUB Desktop APP, but does not allow to commitSeem
R
2

If you want to try it with the Github web: (and don't want to move individual files manually)

  1. Download the 'zip' for a directory. (Repeat for all directories/folders)

  2. Unzip all the directories/folders on your pc. (don't touch the internal contents of these folders)

  3. Rename these folders on your pc, such that, you precede the name of the folder name with '1. or 2. or 3. and so on' (in order that you want them to appear... eg: if u want some folder to appear first, change its name from 'xyz' to '1. xyz')

  4. Upload all these directories back on Github Web.

By doing this, all the contents of your directories/folders will remain intact and in the same order as they were... just the Directories/Folders themselves will be ordered as per the number you used while naming it in Step 3.

I found this easier and quicker than moving all individual files from one directory to other.

Example - (how it would appear on Github Web)

Before : (alphabetically ordered)

abc
jkl
xyz

After :

  1. xyz
  2. jkl
  3. abc
Reareace answered 20/1, 2022 at 21:26 Comment(0)
O
1

You could use a workflow for this.

# ./.github/workflows/rename.yaml
name: Rename Directory

on:
  push:

jobs:
  rename:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v2
      - run: git mv old_name new_name
      - uses: EndBug/[email protected]

Then just delete the workflow file, which you can do in the UI

Observer answered 11/10, 2020 at 8:2 Comment(0)
P
1

For all I know, there is no way you can do this from the GitHub web interface.

Here is how I was successfully able to do it -

Step 1: Rename in your local. In your local path, give command $ git mv old-name new-name.

Now it will be renamed in your local path.

Step 2: Staging. Give command $ git add .

Step 3: Commit. Use command $ git commit -m "add your comment" https://github.com/repo-name/branch-name.git

Step 4: Push. $ git push
or
$ git push https://github.com/repo-name/branch-name.git branch-name

(Instead of everytime specifying the big URL, you can use the alias "origin" or whatever you like. But first you need to give this command in the beginning $ git remote add origin https://github.com/repo-name/branch-name.git )

Penetrating answered 5/4, 2021 at 6:20 Comment(0)
F
1

It can also be done using The [github.dev][1] web-based editor. To open your github repository using github.dev, you can either :

  • Press the . key on your repository
  • Swap .com with .dev in the URL

After your edits, you can commit your changes like described here : https://docs.github.com/en/codespaces/the-githubdev-web-based-editor#commit-your-changes

Feathercut answered 17/7, 2022 at 14:41 Comment(0)
M
0

The best way to change the folder directory in GitHub is to work with GitHub Desktop. You can clone your repository using GitHub desktop. The folders will normally appear as Windows folders and you can play around with them (Like Renaming, Moving, Cutting, etc). Once done, commit and push the changes through GitHub Desktop, and it's done.

Muck answered 3/7, 2021 at 23:20 Comment(0)
L
0

Now you can "open in github.dev editor" your repository. In repo page press Ctrl k to open command pallete and type > to show commands. First command are Open in github.dev editor. This will jump to MS Visual Studio Code in browser with opened this repository. Using file explorer you might rename files and folders and then commit changes.

Ligate answered 1/5, 2022 at 12:7 Comment(0)
W
0

Similar to previous answer by @AsefHossain, Github has a great extension using VS Code, simply hitting shift and . at the same time (on a Mac at least). This opens a new web page window with your repo in the file viewer. You can edit and commit code here. Note, that this will commit directly to your main development branch, works great.

Whoa answered 31/5, 2022 at 3:2 Comment(0)
L
0

The question seems simple but it was quite hard for me to get the answer. I wanted to rename my folder from capital letters to small so I made sure my git configuration will catch that first. For this, I ran:

git config core.ignorecase false

Then simply rename your files in the VS code and commit them. You probably still see the old folders in the github repo. So go to the folder you're interesting in deleting and press ... button on top right and Delete directory enter image description here

Luanaluanda answered 16/1, 2023 at 11:38 Comment(0)
W
-1

Go into your directory and click on 'Settings' next to the little cog. There is a field to rename your directory.

Whiteeye answered 1/6, 2019 at 15:27 Comment(1)
Thats the whole repository...not a sub directory. There is no way to change the name of a subdirectory of the repositoryHurless
T
-2

As a newer user to git, I took the following approach. From the command line, I was able to rename a folder by creating a new folder, copying the files to it, adding and commiting locally and pushing. These are my steps:

$mkdir newfolder 
$cp oldfolder/* newfolder
$git add newfolder 
$git commit -m 'start rename'     
$git push                             #New Folder appears on Github      
$git rm -r oldfolder
$git commit -m 'rename complete' 
$git push                             #Old Folder disappears on Github  

Probably a better way, but it worked for me.

Tunstall answered 20/11, 2018 at 16:34 Comment(1)
Question is about Github website.Outfox
T
-7

I changed the 'Untitlted Folder' name by going upward one directory where the untitled folder and other docs are listed.

Tick the little white box in front of the 'Untitled Folder', a 'rename' button will show up at the top. Then click and change the folder name into whatever kinky name you want.

See the 'Rename' button?

See the 'Rename' button?

Tarrah answered 17/2, 2016 at 3:34 Comment(4)
No checkboxes and no Rename button either.Eleneeleni
How do you that? I can't see those icons.Catch
Are you even using Github?Ceylon
FYI: That's jupyter notebookTyishatyke

© 2022 - 2024 — McMap. All rights reserved.