1

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.

maestromani
  • 841
  • 1
  • 9
  • 31

1 Answers1

3

The description file isn't synced between repos. Here is an alternate method to simulate it.

Community
  • 1
  • 1
Andy
  • 44,610
  • 13
  • 70
  • 69
  • 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