Advertisement
Guest User

Untitled

a guest
Apr 19th, 2014
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.61 KB | None | 0 0
  1. # grails stuff to ignore
  2. target
  3. *.iml
  4. *.ipr
  5. .idea
  6. *.log
  7. *.swp # vi swap files
  8. .DS_Store # OS X Finder cache files
  9.  
  10. # cocoapods stuff to ignore
  11. Pods
  12. Podfile.lock
  13.  
  14. $ git status
  15. On branch master
  16. Your branch is ahead of 'origin/master' by 2 commits.
  17. (use "git push" to publish your local commits)
  18.  
  19. Untracked files:
  20. (use "git add <file>..." to include in what will be committed)
  21.  
  22. ios/.DS_Store
  23.  
  24. nothing added to commit but untracked files present (use "git add" to track)
  25.  
  26. .DS_Store
  27.  
  28. *.DS_Store # OS X Finder cache files
  29. .DS_Store # OS X Finder cache files
  30.  
  31. git rm --cached .DS_Store
  32. git commit -m "msg"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement