I am in the process of transferring our code from TFS to git as per the article here
The tool use the following command to clone TFS version to local repository along with all the history.
git-tf clone https://myaccount.visualstudio.com/DefaultCollection $/MyBigProject/MyMainBranch --deep
I want to know instead cloning all the history is there any way to clone history till certain date
EDIT1
Both tools (git-tfs and git-tf) fetch source code + history at TFS branch or folder level. I want to fetch only certain folders from the TFS branch. For example this is how my TFS branch looks like:
MyTFSTeamProject -> MyTFSBranch ->
ProjectFolder1
ProjectFolder2
ProjectFolder3
ProjectFolder4
LibraryFolder
I want to fetch ProjectFolder1,ProjectFoler2 and Library along with it's history into local git repository and then push it GitHub
Can someone help me with the steps i need to take.