Is there a way to update project description in bare repository. I have cloned the project , updated description and tried git push. But description is not getting updated. I'm using gitolite in my environment.
Asked
Active
Viewed 2,837 times
1
-
Added file called description in bare repo and it worked. – maestromani Aug 09 '11 at 04:58
-
possible duplicate of [git push .git/description file](http://stackoverflow.com/questions/3214871/git-push-git-description-file) – Cristian Ciupitu Jan 03 '14 at 00:09
1 Answers
3
The description file isn't synced between repos. Here is an alternate method to simulate it.
-
Thanks a lot, i just added one file called description in bare repo and it started working fine,. – maestromani Aug 09 '11 at 05:03
-
It's syncing the .git/description file? Or a file called description in the working dir? – Andy Aug 09 '11 at 05:06
-
You are correct, only in gitweb it showed the description not in newly cloned one. Tested your solution which worked. Again thanks. – maestromani Aug 09 '11 at 06:59