I have one application (i.e app1) with proper git-setup in it. And I have the same application (i.e app2) with no git. That application is having all the latest changes. Now I want to add git to app2 and then want to update app1. How can I accomplish that ?
Share
Hm, good question. Ain’t sure but something like this should do the trick:
app2🙂cd app2mkdir tmpcd tmpgit clone git://.../app1.gitgit mv .git ..cd ..tmpgit statusAlways try to keep your code under version control. Git has quite a small fingerprint.