Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Apr 29th, 2012  |  syntax: None  |  size: 0.32 KB  |  hits: 10  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. changing the git structure
  2. VL(repo)    
  3.     .git (hidden)    
  4.      code files    
  5.      ......    
  6.      .....
  7.  
  8. I want it like
  9.  
  10. html(repo)
  11.     .git  
  12.      VL
  13.        code files
  14.        ......
  15.        ......
  16.        
  17. mkdir VL
  18. git mv <all your code> VL
  19. git commit -m "moved all my code under VL"
  20.        
  21. git add -A
  22. git commit -m "moved code"