Advertisement
Guest User

Untitled

a guest
Feb 17th, 2017
132
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.91 KB | None | 0 0
  1. pi@raspberrypi:/home/homeassistant/.homeassistant/automation $ git status
  2. On branch master
  3. Your branch is up-to-date with 'origin/master'.
  4. Changes not staged for commit:
  5. (use "git add/rm <file>..." to update what will be committed)
  6. (use "git checkout -- <file>..." to discard changes in working directory)
  7.  
  8. deleted: test1
  9.  
  10. Untracked files:
  11. (use "git add <file>..." to include in what will be committed)
  12.  
  13. ../.HA_VERSION
  14. ../.uuid
  15. ../BackupAutomation.yaml
  16. ../deps/
  17. ../home-assistant.log
  18. ../home-assistant_v2.db
  19. ../secrets.yaml
  20.  
  21. no changes added to commit (use "git add" and/or "git commit -a")
  22. pi@raspberrypi:/home/homeassistant/.homeassistant/automation $ sudo git rm test1
  23. rm 'automation/test1'
  24. pi@raspberrypi:/home/homeassistant/.homeassistant/automation $ sudo git commit -m "Removed Directory"
  25. [master 613d326] Removed Directory
  26. 1 file changed, 1 deletion(-)
  27. delete mode 100644 automation/test1
  28. pi@raspberrypi:/home/homeassistant/.homeassistant/automation $ sudo git push
  29. warning: push.default is unset; its implicit value has changed in
  30. Git 2.0 from 'matching' to 'simple'. To squelch this message
  31. and maintain the traditional behavior, use:
  32.  
  33. git config --global push.default matching
  34.  
  35. To squelch this message and adopt the new behavior now, use:
  36.  
  37. git config --global push.default simple
  38.  
  39. When push.default is set to 'matching', git will push local branches
  40. to the remote branches that already exist with the same name.
  41.  
  42. Since Git 2.0, Git defaults to the more conservative 'simple'
  43. behavior, which only pushes the current branch to the corresponding
  44. remote branch that 'git pull' uses to update the current branch.
  45.  
  46. See 'git help config' and search for 'push.default' for further information.
  47. (the 'simple' mode was introduced in Git 1.7.11. Use the similar mode
  48. 'current' instead of 'simple' if you sometimes use older versions of Git)
  49.  
  50. Username for 'https://github.com': blackmajik
  51. Password for 'https://blackmajik@github.com':
  52. Counting objects: 3, done.
  53. Delta compression using up to 4 threads.
  54. Compressing objects: 100% (2/2), done.
  55. Writing objects: 100% (3/3), 318 bytes | 0 bytes/s, done.
  56. Total 3 (delta 1), reused 0 (delta 0)
  57. remote: Resolving deltas: 100% (1/1), completed with 1 local objects.
  58. To https://github.com/BlackMajik/HomeAssistPi
  59. f155a7a..613d326 master -> master
  60. pi@raspberrypi:/home/homeassistant/.homeassistant/automation $ git status
  61. On branch master
  62. Your branch is up-to-date with 'origin/master'.
  63. Untracked files:
  64. (use "git add <file>..." to include in what will be committed)
  65.  
  66. ../.HA_VERSION
  67. ../.uuid
  68. ../BackupAutomation.yaml
  69. ../deps/
  70. ../home-assistant.log
  71. ../home-assistant_v2.db
  72. ../secrets.yaml
  73.  
  74. nothing added to commit but untracked files present (use "git add" to track)
  75. pi@raspberrypi:/home/homeassistant/.homeassistant/automation $
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement