<div dir="ltr">When you run git, it creates a hidden ".git" directory which is not normally visible.  Inside the .git/config file is the repo you cloned from, called the upstream.<div><br></div><div>Nuke the .git directory completely.<br>
</div><div>Move stuff around</div><div>git init your own repo once you're done reorganizing.  You can then set the upstream to your own github if needed later.</div><div><br></div><div>or the more difficult route: modify the .git/config file directly (vi/emacs) or reset the upstream via `git remote` calls.</div>
<div><br></div><div>When you rename the project, you'll need to update your Makefile with the correct project name.  I am not sure if <a href="http://erlang.mk">erlang.mk</a> does directory traversals or if you'll need to tell it where the new src file is.  Commonly you'll see a top-level Makefile calling sub-Makefiles, one for each project.</div>
<div><br></div><div>G'luck.</div><div><br></div><div>-mox</div><div><br></div><div><br></div><div><br></div><div><br></div><div><br></div><div><br></div><div><br></div></div><div class="gmail_extra"><br><br><div class="gmail_quote">
On Wed, Apr 9, 2014 at 1:56 PM,  <span dir="ltr"><<a href="mailto:lloyd@writersglen.com" target="_blank">lloyd@writersglen.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
Hello,<br>
<br>
If it's not one thing, it's another.<br>
<br>
Attempting to deepen my understanding of Cowboy, I went back to Getting Started.  First time through it worked like a charm. Then I renamed the app and tried to rearrange directories a bit to support multiple applications:<br>

<br>
From:<br>
<br>
hello_erlang<br>
   <a href="http://erlang.mk" target="_blank">erlang.mk</a><br>
   Makefile<br>
   relx.config<br>
   src<br>
<br>
To:<br>
<br>
lit<br>
   apps<br>
     lit<br>
        src<br>
   <a href="http://erlang.mk" target="_blank">erlang.mk</a><br>
   Makefile<br>
   relx.config<br>
<br>
Now make gave me an error:<br>
<br>
...<br>
Cloning into '/home/lloyd/Erl/Cowboy/lit/deps/cowboy'...<br>
fatal: <a href="https://github.com/extend/cowboy/info/refs" target="_blank">https://github.com/extend/cowboy/info/refs</a> not found: did you run git update-server-info on the server?<br>
make: *** [/home/lloyd/Erl/Cowboy/lit1/deps/cowboy] Error 128<br>
<br>
So... started all over again from scratch in a new directory, following Getting Started explicitly. But now, I get the same error; e.g. worked the first time, but not the second.<br>
<br>
Google suggests that I might need to update git. But I'm running git version 1.7.10.4; and the github site suggests that all above 1.7.10 should be stable.<br>
<br>
Three questions:<br>
<br>
1) Why would make work the first time around, but not the second?<br>
2) How can I fix it?<br>
3) What else do I need to do, in Makefile for instance, to successfully compile my new directory organization?<br>
<br>
Many thanks,<br>
<br>
LRP<br>
<br>
<br>
<br>
<br>
*********************************************<br>
My books:<br>
<br>
THE GOSPEL OF ASHES<br>
<a href="http://thegospelofashes.com" target="_blank">http://thegospelofashes.com</a><br>
<br>
Strength is not enough. Do they have the courage<br>
and the cunning? Can they survive long enough to<br>
save the lives of millions?<br>
<br>
FREEIN' PANCHO<br>
<a href="http://freeinpancho.com" target="_blank">http://freeinpancho.com</a><br>
<br>
A community of misfits help a troubled boy find his way<br>
<br>
AYA TAKEO<br>
<a href="http://ayatakeo.com" target="_blank">http://ayatakeo.com</a><br>
<br>
Star-crossed love, war and power in an alternative<br>
universe<br>
<br>
Available through Amazon or by request from your<br>
favorite bookstore<br>
<br>
<br>
**********************************************<br>
<br>
_______________________________________________<br>
erlang-questions mailing list<br>
<a href="mailto:erlang-questions@erlang.org">erlang-questions@erlang.org</a><br>
<a href="http://erlang.org/mailman/listinfo/erlang-questions" target="_blank">http://erlang.org/mailman/listinfo/erlang-questions</a><br>
</blockquote></div><br></div>