简体   繁体   中英

Git repo remote change folder

I created a git repository in folder A. And then, I push it to a remote (let's say it's called D) Then, I delete folder A, and create a new folder B with very different files/folders inside it. And, I want to change the remote D so it's pointing to B.

How to do it? thanks

  1. Initialize a new git repository in B: git init
  2. Add all files in B: git add .
  3. Commit: git commit -a -m "Initial commit"
  4. Add D as a remote git remote add origin <D>
  5. Force push to D: git push -fu origin master

This will destroy the history on D, so beware and if some one else is referring to that remote it might piss them off.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM