Keith_S_Thompson

Example for http://stackoverflow.com/q/30650082/827263

Jun 4th, 2015
293
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. $ git init
  2. Initialized empty Git repository in /home/kst/2015-06-04/.git/
  3. $ mkdir foo.dir
  4. $ cd foo.dir
  5. $ echo hello > hello.txt
  6. $ git add .
  7. $ git status
  8. On branch master
  9.  
  10. Initial commit
  11.  
  12. Changes to be committed:
  13. (use "git rm --cached <file>..." to unstage)
  14.  
  15. new file: hello.txt
  16.  
  17. $
Add Comment
Please, Sign In to add comment