How do I convert simple non source controlled project backups into a versioned git repository?

前端 未结 5 733
孤独总比滥情好
孤独总比滥情好 2021-01-04 22:15

I have been extremely naughty. I have been developing a piece of software (I\'m the only developer) for a little while (O.K., it\'s over the course of a few years), but have

5条回答
  •  轻奢々
    轻奢々 (楼主)
    2021-01-04 22:58

    You can use example git-fast-import based tools distributed in git.git repository: import-zips.py (in Python) or import-tars.perl (in Perl), or use those script as a base of your own import script. You can find those scripts in contrib/fast-import/ directory.

提交回复
热议问题