Guest User

Untitled

a guest
Aug 10th, 2018
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. migrating existing project to git
  2. Create a new repository.
  3.  
  4. git init
  5.  
  6. Copy the files from the oldest .zip file into the repository.
  7.  
  8. git add ...
  9. git commit ...
  10.  
  11. Delete the files copied from the oldest .zip file.
  12. Copy the files from the second oldest .zip file into the repository.
  13.  
  14. git add ...
  15. git commit ...
  16.  
  17. Delete the files copied from the second oldest .zip file.
  18. ...
  19.  
  20. git add -A .
  21.  
  22. git remote add jdc file:///opt/src/tile-qt-jdc
  23. git fetch jdc
  24. git ls-tree 1519481
  25. git read-tree -m 1519481
  26. git checkout-index -f -u -a
Add Comment
Please, Sign In to add comment