Advertisement
Guest User

Untitled

a guest
Feb 28th, 2015
176
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. $ git add --all
  2. warning: The behavior of 'git add --all (or -A)' with no path argument from a subdirectory of the tree will change in Git 2.0 and should not be used anymore.
  3. To add content for the whole tree, run:
  4.  
  5. git add --all :/
  6. (or git add -A :/)
  7.  
  8. To restrict the command to the current directory, run:
  9.  
  10. git add --all .
  11. (or git add -A .)
  12.  
  13. With the current Git version, the command is restricted to the current directory.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement