CopyPastor

Detecting plagiarism made easy.

Score: 0.9593462112846725; Reported for: String similarity Open both answers

Possible Plagiarism

Plagiarized on 2021-02-07
by Muhammad Numan

Original Post

Original - Posted on 2014-09-23
by Desta Haileselassie Hagos



            
Present in both answers; Present only in the new answer; Present only in the old answer;

Deleting the `.git` folder may cause problems in your git repository. If you want to delete all your commit history but keep the code in its current state, it is very safe to do it as in the following:
1. Checkout
`git checkout --orphan latest_branch`
2. Add all the files
`git add -A` 3. Commit the changes
`git commit -am "commit message"`
4. Delete the branch
`git branch -D master`
5. Rename the current branch to master
`git branch -m master`
6. Finally, force update your repository
`git push -f origin master`
PS: this will not keep your old commit history around
Deleting the `.git` folder may cause problems in your git repository. If you want to delete all your commit history but keep the code in its current state, it is very safe to do it as in the following:
1. Checkout
`git checkout --orphan latest_branch`
2. Add all the files
`git add -A`
3. Commit the changes
`git commit -am "commit message"`
4. Delete the branch
`git branch -D main`
5. Rename the current branch to main
`git branch -m main`
6. Finally, force update your repository
`git push -f origin main`
PS: this will not keep your old commit history around

        
Present in both answers; Present only in the new answer; Present only in the old answer;