•  


Renaming a file - GitHub Docs
Skip to main content

Renaming a file

You can rename any file in your repository directly in GitHub or by using the command line.

Platform navigation

Renaming a file on GitHub

Renaming a file also gives you the opportunity to move the file to a new location

Tips :

  • If you try to rename a file in a repository that you don’t have access to, we will fork the project to your personal account and help you send a pull request to the original repository after you commit your change.
  • File names created via the web interface can only contain alphanumeric characters and hyphens ( - ). To use other characters, create and commit the files locally and then push them to the repository.
  • Some files, such as images, require that you rename them from the command line. For more information, see " Renaming a file using the command line ."
  1. In your repository, browse to the file you want to rename.

  2. In the upper right corner of the file view, click to open the file editor.

    Screenshot of a file. In the header, a button, labeled with a pencil icon, is outlined in dark orange.

  3. In the filename field, change the name of the file to the new filename you want. You can also update the contents of your file at the same time.

    Screenshot showing a repository file open for editing in the web browser. The file name field is active and highlighted with a dark orange outline.

  4. Click Commit changes...

  5. In the "Commit message" field, type a short, meaningful commit message that describes the change you made to the file. You can attribute the commit to more than one author in the commit message. For more information, see " Creating a commit with multiple authors ."

  6. Below the commit message fields, decide whether to add your commit to the current branch or to a new branch. If your current branch is the default branch, you should choose to create a new branch for your commit and then create a pull request. For more information, see " Creating a pull request ."

    Screenshot of a GitHub pull request showing a radio button to commit directly to the main branch or to create a new branch. New branch is selected.

  7. Click Commit changes or Propose changes .

Renaming a file using the command line

You can use the command line to rename any file in your repository.

Many files can be renamed directly on GitHub, but some files, such as images, require that you rename them from the command line.

This procedure assumes you've already:

  1. Open Terminal Terminal Git Bash .

  2. Change the current working directory to your local repository.

  3. Rename the file, specifying the old file name and the new name you'd like to give the file. This will stage your change for commit.

    git mv OLD-FILENAME NEW-FILENAME
    
  4. Use git status to check the old and new file names.

    $ 
    git status
    
    > 
    # On branch YOUR-BRANCH
    
    > 
    # Changes to be committed:
    
    > 
    #   (use "git reset HEAD <file>..." to unstage)
    
    > 
    #
    
    > 
    #     renamed: OLD-FILENAME -> NEW-FILENAME
    
    > 
    #
    
    
  5. Commit the file that you've staged in your local repository.

    $ 
    git commit -m 
    "Rename file"
    
    # 
    Commits the tracked changes and prepares them to be pushed to a remote repository.
    
    # 
    To remove this commit and modify the file, use 
    'git reset --soft HEAD~1'
     and commit and add the file again.
    
    
  6. Push the changes in your local repository to GitHub.com.

    $ 
    git push origin YOUR_BRANCH
    
    # 
    Pushes the changes 
    in
     your 
    local
     repository up to the remote repository you specified as the origin
    
    
- "漢字路" 한글한자자동변환 서비스는 교육부 고전문헌국역지원사업의 지원으로 구축되었습니다.
- "漢字路" 한글한자자동변환 서비스는 전통문화연구회 "울산대학교한국어처리연구실 옥철영(IT융합전공)교수팀"에서 개발한 한글한자자동변환기를 바탕하여 지속적으로 공동 연구 개발하고 있는 서비스입니다.
- 현재 고유명사(인명, 지명등)을 비롯한 여러 변환오류가 있으며 이를 해결하고자 많은 연구 개발을 진행하고자 하고 있습니다. 이를 인지하시고 다른 곳에서 인용시 한자 변환 결과를 한번 더 검토하시고 사용해 주시기 바랍니다.
- 변환오류 및 건의,문의사항은 juntong@juntong.or.kr로 메일로 보내주시면 감사하겠습니다. .
Copyright ⓒ 2020 By '전통문화연구회(傳統文化硏究會)' All Rights reserved.
 한국   대만   중국   일본