문제

So I have been using folders for version control so far and I really want to use Git going forward. I have ~ 20 folders in the format projName_YYYYMMDD format. Does Git allow to convert these older version in folders as its commit history?

도움이 되었습니까?

해결책

Just overwrite the contents and commit them one at a time in your git repo.

## Overwrite Previous Folder with Next Folder
git add -A
git commit -m 'commit message here, perhaps the date from the folder'
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top