Re: [git-users] Retrieve all files of a group of projects as they were at a given date

2019-05-24 Thread Michael
On 2019-05-16, at 11:35 AM, Giorgio Forti wrote: > If I commit ONE file Git builds a "zip" that contains the actual situation of > ALL the 6 thousand of files in my C# solution? > And if I check out this commithe file Git gives me back the complete > situation at that moment? > This would

[git-users] Merging a file that is different between two branches

2019-05-24 Thread Ravi Malghan
I have 2 branches: devl, acpt. Typically all the users make changes in the devl and when ready to deploy merge it to acpt. At some point someone must have done something which made a file different in the branches. running a git merge in acpt branch from devl doesn't seem to be merging the file

[git-users] Re: delete files from git history but failed

2019-05-24 Thread JiaYu Zhang
I found that repeat the delete command does the work, who could tell me why? git clone g...@github.com:rawbin-/git-rewrite-history-test.git cd git-rewrite-history-test git rev-list --objects --all ## show objects git filter-branch -f --index-filter 'git rm -rf --cached --ignore-unmatch

[git-users] delete files from git history but failed

2019-05-24 Thread JiaYu Zhang
I want to delete dist and dist.zip from the git history, with the following commands,but failed git clone g...@github.com:rawbin-/git-rewrite-history-test.git cd git-rewrite-history-test git rev-list --objects --all ## show objects git filter-branch -f --index-filter 'git rm -rf --cached