Advertisement
Guest User

Problem z GitHubem

a guest
Feb 5th, 2015
623
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 4.21 KB | None | 0 0
  1. patryk@patryk-PC ~ $ git pull https://github.com/patrykbajos/CmdParser.git CmdParsetHutHub
  2. fatal: Not a git repository (or any of the parent directories): .git
  3. patryk@patryk-PC ~ $ git pull https://github.com/patrykbajos/CmdParser.git CmdParserHutHub
  4. fatal: Not a git repository (or any of the parent directories): .git
  5. patryk@patryk-PC ~ $ git clone https://github.com/patrykbajos/CmdParser.git CmdParserHutHub
  6. Cloning into 'CmdParserHutHub'...
  7. remote: Counting objects: 3, done.
  8. remote: Compressing objects: 100% (2/2), done.
  9. remote: Total 3 (delta 0), reused 0 (delta 0)
  10. Unpacking objects: 100% (3/3), done.
  11. Checking connectivity... done.
  12. patryk@patryk-PC ~ $ cd CmdParserHutHub/
  13. patryk@patryk-PC ~/CmdParserHutHub $ git add -A
  14. patryk@patryk-PC ~/CmdParserHutHub $ git commit -m "First commit :D"
  15. [master e4ebfb2] First commit :D
  16.  11 files changed, 360 insertions(+)
  17.  create mode 100644 Makefile
  18.  create mode 100644 argsList.cpp
  19.  create mode 100644 argsList.hpp
  20.  create mode 100644 cmd.cpp
  21.  create mode 100644 cmd.hpp
  22.  create mode 100644 cmdDataReader.cpp
  23.  create mode 100644 cmdDataReader.hpp
  24.  create mode 100644 cmdTypes.hpp
  25.  create mode 100644 cmdparser
  26.  create mode 100644 flagsList.cpp
  27.  create mode 100644 flagsList.hpp
  28. patryk@patryk-PC ~/CmdParserHutHub $ git push CmdParser
  29. warning: push.default is unset; its implicit value is changing in
  30. Git 2.0 from 'matching' to 'simple'. To squelch this message
  31. and maintain the current behavior after the default changes, 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. In Git 2.0, Git will default 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. fatal: 'CmdParser' does not appear to be a git repository
  51. fatal: Could not read from remote repository.
  52.  
  53. Please make sure you have the correct access rights
  54. and the repository exists.
  55. patryk@patryk-PC ~/CmdParserHutHub $ git config -l
  56. user.name=patrykbajos
  57. user.email=_tomojemajlalejestpoprawny_@wp.pl
  58. core.editor=geany
  59. core.repositoryformatversion=0
  60. core.filemode=true
  61. core.bare=false
  62. core.logallrefupdates=true
  63. remote.origin.url=https://github.com/patrykbajos/CmdParser.git
  64. remote.origin.fetch=+refs/heads/*:refs/remotes/origin/*
  65. branch.master.remote=origin
  66. branch.master.merge=refs/heads/master
  67. patryk@patryk-PC ~/CmdParserHutHub $ git remote
  68. origin
  69. patryk@patryk-PC ~/CmdParserHutHub $ git remote add CmdParser git@github.com:patrykbajos/CmdParser.git
  70. patryk@patryk-PC ~/CmdParserHutHub $ git push CmdParser
  71. warning: push.default is unset; its implicit value is changing in
  72. Git 2.0 from 'matching' to 'simple'. To squelch this message
  73. and maintain the current behavior after the default changes, use:
  74.  
  75.   git config --global push.default matching
  76.  
  77. To squelch this message and adopt the new behavior now, use:
  78.  
  79.   git config --global push.default simple
  80.  
  81. When push.default is set to 'matching', git will push local branches
  82. to the remote branches that already exist with the same name.
  83.  
  84. In Git 2.0, Git will default to the more conservative 'simple'
  85. behavior, which only pushes the current branch to the corresponding
  86. remote branch that 'git pull' uses to update the current branch.
  87.  
  88. See 'git help config' and search for 'push.default' for further information.
  89. (the 'simple' mode was introduced in Git 1.7.11. Use the similar mode
  90. 'current' instead of 'simple' if you sometimes use older versions of Git)
  91.  
  92. Counting objects: 14, done.
  93. Delta compression using up to 4 threads.
  94. Compressing objects: 100% (13/13), done.
  95. Writing objects: 100% (13/13), 3.53 KiB | 0 bytes/s, done.
  96. Total 13 (delta 0), reused 0 (delta 0)
  97. To git@github.com:patrykbajos/CmdParser.git
  98.    39f1ebd..e4ebfb2  master -> master
  99. patryk@patryk-PC ~/CmdParserHutHub $
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement