git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* bug to report
@ 2016-04-08 10:01 chenjinlei
  2016-04-08 11:45 ` Rename case insensitive Torsten Bögershausen
  0 siblings, 1 reply; 2+ messages in thread
From: chenjinlei @ 2016-04-08 10:01 UTC (permalink / raw)
  To: git


I’m encounter a problem due to my own stupidity…
#1 I pushed a project named Android to my repository.
#2 I `mv Android android`, cause I think it’s no good to use the uppercase as my project name.
#3 I pushed it to my repository again…

I found that there `Adnroid` and `android` exist in my repository, and I want to delete the former one.
So I tried to `git pull && git rm Android`, but guess what? I can’t pull the `Android`……

I found that OS X is case-insensitive, while github repository is case-sensitive, thus I can’t `rm Android` any more. It becomes a gosht in my repository and I can never delete it!


OS: OS X
git version: 2.6.4 (Apple Git-63)

^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: Rename case insensitive
  2016-04-08 10:01 bug to report chenjinlei
@ 2016-04-08 11:45 ` Torsten Bögershausen
  0 siblings, 0 replies; 2+ messages in thread
From: Torsten Bögershausen @ 2016-04-08 11:45 UTC (permalink / raw)
  To: chenjinlei, git

On 08.04.16 12:01, chenjinlei wrote:
> 
> I’m encounter a problem due to my own stupidity…
> #1 I pushed a project named Android to my repository.
> #2 I `mv Android android`, cause I think it’s no good to use the uppercase as my project name.
> #3 I pushed it to my repository again…
> 
> I found that there `Adnroid` and `android` exist in my repository, and I want to delete the former one.
> So I tried to `git pull && git rm Android`, but guess what? I can’t pull the `Android`……
> 
> I found that OS X is case-insensitive, while github repository is case-sensitive, thus I can’t `rm Android` any more. It becomes a gosht in my repository and I can never delete it!
>
Correct.

#make a fresh clone of your repo to the local disc:
git clone "repo_your_repo_name" temp_repo

# go into that repo
cd temp_repo

# Tell Git to rename the folder in the Git repo:
git mv Android android

#Commit
git commit -m "mv Android android"

#Push back
git push origin

HTH

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2016-04-08 11:45 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-04-08 10:01 bug to report chenjinlei
2016-04-08 11:45 ` Rename case insensitive Torsten Bögershausen

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).