1. Administrator@-20131003RY MINGW64 ~
  2. $ pwd
  3. /c/Users/Administrator
  4.  
  5. Administrator@-20131003RY MINGW64 ~
  6. $ cd e:/
  7.  
  8. Administrator@-20131003RY MINGW64 /e
  9. $ pwd
  10. /e
  11.  
  12. Administrator@-20131003RY MINGW64 /e
  13. $ cd github
  14.  
  15. Administrator@-20131003RY MINGW64 /e/github
  16. $ mkdir indoor
  17.  
  18. Administrator@-20131003RY MINGW64 /e/github
  19. $ cd indoor
  20.  
  21. Administrator@-20131003RY MINGW64 /e/github/indoor
  22. $ git init
  23. Initialized empty Git repository in E:/github/indoor/.git/
  24.  
  25. Administrator@-20131003RY MINGW64 /e/github/indoor (master)
  26. $ git add readme.txt
  27.  
  28. Administrator@-20131003RY MINGW64 /e/github/indoor (master)
  29. $ gir commit -m "wrote a readme file "
  30. bash: gir: command not found
  31.  
  32. Administrator@-20131003RY MINGW64 /e/github/indoor (master)
  33. $ git commit -m "wrote a readme file "
  34. [master (root-commit) 3792c32] wrote a readme file
  35. file changed, insertion(+)
  36. create mode readme.txt
  37.  
  38. Administrator@-20131003RY MINGW64 /e/github/indoor (master)
  39. $ git status
  40. On branch master
  41. Changes not staged for commit:
  42. (use "git add <file>..." to update what will be committed)
  43. (use "git checkout -- <file>..." to discard changes in working directory)
  44.  
  45. modified: readme.txt
  46.  
  47. no changes added to commit (use "git add" and/or "git commit -a")
  48.  
  49. Administrator@-20131003RY MINGW64 /e/github/indoor (master)
  50. $ git diff readme.txt
  51. diff --git a/readme.txt b/readme.txt
  52. index f7a8387..235b502
  53. --- a/readme.txt
  54. +++ b/readme.txt
  55. @@ - +, @@
  56. -<B2><E2><CA><D4> ʹ<D3><C3>git <BF>ͻ<A7><B6><CB>
  57. \ No newline at end of file
  58. +<B2><E2><CA><D4> ʹ<D3><C3>git <BF>ͻ<A7><B6><CB>
  59. +<B5>ڶ<FE><D0><D0>
  60. \ No newline at end of file
  61.  
  62. Administrator@-20131003RY MINGW64 /e/github/indoor (master)
  63. $ git add readme.txt
  64.  
  65. Administrator@-20131003RY MINGW64 /e/github/indoor (master)
  66. $ git status
  67. On branch master
  68. Changes to be committed:
  69. (use "git reset HEAD <file>..." to unstage)
  70.  
  71. modified: readme.txt
  72.  
  73. Administrator@-20131003RY MINGW64 /e/github/indoor (master)
  74. $ git commit -m "add distributed go commit"
  75. [master 5f87ecf] add distributed go commit
  76. file changed, insertions(+), deletion(-)
  77.  
  78. Administrator@-20131003RY MINGW64 /e/github/indoor (master)
  79. $ git status
  80. On branch master
  81. nothing to commit, working directory clean
  82.  
  83. Administrator@-20131003RY MINGW64 /e/github/indoor (master)
  84. $ git log --pretty=oneline
  85. 5f87ecf99fe738341233181f2cb176e0fc249971 add distributed go commit
  86. 3792c3284467ed426d7a2be67ff692eb510a5bbb wrote a readme file
  87.  
  88. Administrator@-20131003RY MINGW64 /e/github/indoor (master)
  89. $ git reset --hard HEAD^
  90. HEAD is now at 3792c32 wrote a readme file
  91.  
  92. Administrator@-20131003RY MINGW64 /e/github/indoor (master)
  93. $ cat readme.txt
  94. ▒▒▒▒ ʹ▒▒git ▒ͻ▒▒▒
  95. Administrator@-20131003RY MINGW64 /e/github/indoor (master)
  96. $ git log
  97. commit 3792c3284467ed426d7a2be67ff692eb510a5bbb
  98. Author: Francecil <@qq.com>
  99. Date: Sat Sep :: +
  100.  
  101. wrote a readme file
  102.  
  103. Administrator@-20131003RY MINGW64 /e/github/indoor (master)
  104. $ git reset --hard 5f
  105. fatal: ambiguous argument '5f': unknown revision or path not in the working tree.
  106. Use '--' to separate paths from revisions, like this:
  107. 'git <command> [<revision>...] -- [<file>...]'
  108.  
  109. Administrator@-20131003RY MINGW64 /e/github/indoor (master)
  110. $ git reset --hard 5f87ecf
  111. HEAD is now at 5f87ecf add distributed go commit
  112.  
  113. Administrator@-20131003RY MINGW64 /e/github/indoor (master)
  114. $ git log
  115. commit 5f87ecf99fe738341233181f2cb176e0fc249971
  116. Author: Francecil <@qq.com>
  117. Date: Sat Sep :: +
  118.  
  119. add distributed go commit
  120.  
  121. commit 3792c3284467ed426d7a2be67ff692eb510a5bbb
  122. Author: Francecil <@qq.com>
  123. Date: Sat Sep :: +
  124.  
  125. wrote a readme file
  126.  
  127. Administrator@-20131003RY MINGW64 /e/github/indoor (master)
  128. $ git reflog
  129. 5f87ecf HEAD@{}: reset: moving to 5f87ecf
  130. 3792c32 HEAD@{}: reset: moving to HEAD^
  131. 5f87ecf HEAD@{}: commit: add distributed go commit
  132. 3792c32 HEAD@{}: commit (initial): wrote a readme file
  133.  
  134. Administrator@-20131003RY MINGW64 /e/github/indoor (master)
  135. $ git log
  136. commit 5f87ecf99fe738341233181f2cb176e0fc249971
  137. Author: Francecil <@qq.com>
  138. Date: Sat Sep :: +
  139.  
  140. add distributed go commit
  141.  
  142. commit 3792c3284467ed426d7a2be67ff692eb510a5bbb
  143. Author: Francecil <@qq.com>
  144. Date: Sat Sep :: +
  145.  
  146. wrote a readme file
  147.  
  148. Administrator@-20131003RY MINGW64 /e/github/indoor (master)
  149. $ cat readme.txt
  150. 测试 使用git 客户端
  151. 第二行
  152. Administrator@-20131003RY MINGW64 /e/github/indoor (master)
  153. $ git status
  154. On branch master
  155. Changes not staged for commit:
  156. (use "git add <file>..." to update what will be committed)
  157. (use "git checkout -- <file>..." to discard changes in working directory)
  158.  
  159. modified: readme.txt
  160.  
  161. no changes added to commit (use "git add" and/or "git commit -a")
  162.  
  163. Administrator@-20131003RY MINGW64 /e/github/indoor (master)
  164. $ git diff
  165. diff --git a/readme.txt b/readme.txt
  166. index 235b502..141e7b4
  167. --- a/readme.txt
  168. +++ b/readme.txt
  169. @@ -, +, @@
  170. -<B2><E2><CA><D4> ʹ<D3><C3>git <BF>ͻ<A7><B6><CB>
  171. -<B5>ڶ<FE><D0><D0>
  172. \ No newline at end of file
  173. +测试 使用git 客户端
  174. +第二行
  175. \ No newline at end of file
  176.  
  177. Administrator@-20131003RY MINGW64 /e/github/indoor (master)
  178. $ git status
  179. On branch master
  180. Changes not staged for commit:
  181. (use "git add <file>..." to update what will be committed)
  182. (use "git checkout -- <file>..." to discard changes in working directory)
  183.  
  184. modified: readme.txt
  185.  
  186. Untracked files:
  187. (use "git add <file>..." to include in what will be committed)
  188.  
  189. LICENES.txt
  190.  
  191. no changes added to commit (use "git add" and/or "git commit -a")
  192.  
  193. Administrator@-20131003RY MINGW64 /e/github/indoor (master)
  194. $ git add readme.txt
  195.  
  196. Administrator@-20131003RY MINGW64 /e/github/indoor (master)
  197. $ git add LICENES.txt
  198.  
  199. Administrator@-20131003RY MINGW64 /e/github/indoor (master)
  200. $ git status
  201. On branch master
  202. Changes to be committed:
  203. (use "git reset HEAD <file>..." to unstage)
  204.  
  205. new file: LICENES.txt
  206. modified: readme.txt
  207.  
  208. Administrator@-20131003RY MINGW64 /e/github/indoor (master)
  209. $ git commit -m "understand how stage works"
  210. [master 45b7b4d] understand how stage works
  211. files changed, insertions(+), deletions(-)
  212. create mode LICENES.txt
  213.  
  214. Administrator@-20131003RY MINGW64 /e/github/indoor (master)
  215. $ git status
  216. On branch master
  217. nothing to commit, working directory clean
  218.  
  219. Administrator@-20131003RY MINGW64 /e/github/indoor (master)
  220. $ git status
  221. On branch master
  222. Untracked files:
  223. (use "git add <file>..." to include in what will be committed)
  224.  
  225. .txt
  226.  
  227. nothing added to commit but untracked files present (use "git add" to track)
  228.  
  229. Administrator@-20131003RY MINGW64 /e/github/indoor (master)
  230. $ rm .txt
  231.  
  232. Administrator@-20131003RY MINGW64 /e/github/indoor (master)
  233. $ git rm
  234. usage: git rm [<options>] [--] <file>...
  235.  
  236. -n, --dry-run dry run
  237. -q, --quiet do not list removed files
  238. --cached only remove from the index
  239. -f, --force override the up-to-date check
  240. -r allow recursive removal
  241. --ignore-unmatch exit with a zero status even if nothing matched
  242.  
  243. Administrator@-20131003RY MINGW64 /e/github/indoor (master)
  244. $ git rm .txt
  245. fatal: pathspec '1.txt' did not match any files
  246.  
  247. Administrator@-20131003RY MINGW64 /e/github/indoor (master)
  248. $ git status
  249. On branch master
  250. nothing to commit, working directory clean
  251.  
  252. Administrator@-20131003RY MINGW64 /e/github/indoor (master)
  253. $ git add .txt
  254.  
  255. Administrator@-20131003RY MINGW64 /e/github/indoor (master)
  256. $ git commit ,txt
  257. error: pathspec '1,txt' did not match any file(s) known to git.
  258. Administrator@-20131003RY MINGW64 /e/github/indoor (master)
  259. $ git commit .txt
  260. Aborting commit due to empty commit message.
  261.  
  262. Administrator@-20131003RY MINGW64 /e/github/indoor (master)
  263. $ git commit .txt
  264. Aborting commit due to empty commit message.
  265.  
  266. Administrator@-20131003RY MINGW64 /e/github/indoor (master)
  267. $ git add .txt
  268.  
  269. Administrator@-20131003RY MINGW64 /e/github/indoor (master)
  270. $ git commit .txt
  271. Aborting commit due to empty commit message.
  272.  
  273. Administrator@-20131003RY MINGW64 /e/github/indoor (master)
  274. $ git commit -m "commit 1.txt"
  275. [master 2588ac4] commit .txt
  276. file changed, insertion(+)
  277. create mode .txt
  278.  
  279. Administrator@-20131003RY MINGW64 /e/github/indoor (master)
  280. $ rm .txt
  281.  
  282. Administrator@-20131003RY MINGW64 /e/github/indoor (master)
  283. $ ls -l
  284. total
  285. -rw-r--r-- Administrator None 九月 : LICENES.txt
  286. -rw-r--r-- Administrator None 九月 : readme.txt
  287.  
  288. Administrator@-20131003RY MINGW64 /e/github/indoor (master)
  289. $ git checkout .txt
  290.  
  291. Administrator@-20131003RY MINGW64 /e/github/indoor (master)
  292. $ rm .txt
  293.  
  294. Administrator@-20131003RY MINGW64 /e/github/indoor (master)
  295. $ git rm .txt
  296. rm '1.txt'
  297.  
  298. Administrator@-20131003RY MINGW64 /e/github/indoor (master)
  299. $ git checkout .txt
  300. error: pathspec '1.txt' did not match any file(s) known to git.
  301.  
  302. Administrator@-20131003RY MINGW64 /e/github/indoor (master)
  303. $ git reset HEAD .txt
  304. Unstaged changes after reset:
  305. D .txt
  306.  
  307. Administrator@-20131003RY MINGW64 /e/github/indoor (master)
  308. $ git checkout .txt
  309.  
  310. Administrator@-20131003RY MINGW64 /e/github/indoor (master)
  311. $ git rm .txt
  312. rm '1.txt'
  313.  
  314. Administrator@-20131003RY MINGW64 /e/github/indoor (master)
  315. $ git commit
  316. Aborting commit due to empty commit message.
  317.  
  318. Administrator@-20131003RY MINGW64 /e/github/indoor (master)
  319. $ git commit -m "second rm 1.txt"
  320. [master ef7c7e3] second rm .txt
  321. file changed, deletion(-)
  322. delete mode .txt
  323.  
  324. Administrator@-20131003RY MINGW64 /e/github/indoor (master)
  325. $ git reset .txt
  326. fatal: ambiguous argument '1.txt': unknown revision or path not in the working tree.
  327. Use '--' to separate paths from revisions, like this:
  328. 'git <command> [<revision>...] -- [<file>...]'
  329.  
  330. Administrator@-20131003RY MINGW64 /e/github/indoor (master)
  331. $ git add .txt
  332.  
  333. Administrator@-20131003RY MINGW64 /e/github/indoor (master)
  334. $ git rm .txt
  335. error: the following file has changes staged in the index:
  336. .txt
  337. (use --cached to keep the file, or -f to force removal)
  338.  
  339. Administrator@-20131003RY MINGW64 /e/github/indoor (master)
  340. $ rm .txt
  341.  
  342. Administrator@-20131003RY MINGW64 /e/github/indoor (master)
  343. $ git rm .txt
  344. rm '1.txt'
  345.  
  346. Administrator@-20131003RY MINGW64 /e/github/indoor (master)
  347. $ git checkout .txt
  348. error: pathspec '1.txt' did not match any file(s) known to git.
  349.  
  350. Administrator@-20131003RY MINGW64 /e/github/indoor (master)
  351. $ git reset HEAD .txt
  352.  
  353. Administrator@-20131003RY MINGW64 /e/github/indoor (master)
  354. $ git checkout .txt
  355. error: pathspec '1.txt' did not match any file(s) known to git.
  356.  
  357. Administrator@-20131003RY MINGW64 /e/github/indoor (master)
  358. $ git reset .txt
  359. fatal: ambiguous argument '1.txt': unknown revision or path not in the working tree.
  360. Use '--' to separate paths from revisions, like this:
  361. 'git <command> [<revision>...] -- [<file>...]'
  362.  
  363. Administrator@-20131003RY MINGW64 /e/github/indoor (master)
  364. $ ssh-keygen -t rsa -C "xxx@qq.com"
  365. Generating public/private rsa key pair.
  366. Enter file in which to save the key (/c/Users/Administrator/.ssh/id_rsa):
  367. Enter passphrase (empty for no passphrase):
  368. Enter same passphrase again:
  369. Your identification has been saved in /c/Users/Administrator/.ssh/id_rsa.
  370. Your public key has been saved in /c/Users/Administrator/.ssh/id_rsa.pub.
  371. The key fingerprint is:
  372. SHA256:xxx xxx@qq.com
  373. The key's randomart image is:
  374. +---[RSA ]----+
  375. | o .o.o.o.. |
  376. | o + . .o.o= . . .|
  377. | o = .o.oo + o =.|
  378. | .o.o.o . o o o o =|
  379. | o+S.o. o .oo|
  380. | ++. .o.+ . =o|
  381. | ..= +o.o. .E +|
  382. | *o= o.o.. +.|
  383. | o+=...o .o.o. +|
  384. +----[SHA256]-----+
  385.  
  386. Administrator@-20131003RY MINGW64 /e/github/indoor (master)
  387. $
  388.  
  389. Administrator@-20131003RY MINGW64 /e/github/indoor (master)
  390. $ git remote add origin git@github.com:Francecil/InertailNavigation.git
  391.  
  392. Administrator@-20131003RY MINGW64 /e/github/indoor (master)
  393. $ git push -u origin master
  394. The authenticity of host 'github.com (192.30.252.129)' can't be established.
  395. RSA key fingerprint is SHA256:nThbg6kXUpJWGl7E1IGOCspRomTxdCARLviKw6E5SY8.
  396. Are you sure you want to continue connecting (yes/no)? y
  397. Please type 'yes' or 'no': yes
  398. Warning: Permanently added 'github.com,192.30.252.129' (RSA) to the list of known hosts.
  399. Counting objects: , done.
  400. Delta compression using up to threads.
  401. Compressing objects: % (/), done.
  402. Writing objects: % (/), 1.13 KiB | bytes/s, done.
  403. Total (delta ), reused (delta )
  404. To git@github.com:Francecil/InertailNavigation.git
  405. * [new branch] master -> master
  406. Branch master set up to track remote branch master from origin.
  407.  
  408. Administrator@-20131003RY MINGW64 /e/github/indoor (master)
  409. $

mark1-git的更多相关文章

  1. Git 子模块 - submodule

    有种情况我们经常会遇到:某个工作中的项目需要包含并使用另一个项目. 也许是第三方库,或者你 独立开发的,用于多个父项目的库. 现在问题来了:你想要把它们当做两个独立的项目,同时又想在 一个项目中使用另 ...

  2. Git 在团队中的最佳实践--如何正确使用Git Flow

    我们已经从SVN 切换到Git很多年了,现在几乎所有的项目都在使用Github管理, 本篇文章讲一下为什么使用Git, 以及如何在团队中正确使用. Git的优点 Git的优点很多,但是这里只列出我认为 ...

  3. Git与Repo入门

    版本控制 版本控制是什么已不用在说了,就是记录我们对文件.目录或工程等的修改历史,方便查看更改历史,备份以便恢复以前的版本,多人协作... 一.原始版本控制 最原始的版本控制是纯手工的版本控制:修改文 ...

  4. Git Bash的一些命令和配置

    查看git版本号: git --version 如果是第一次使用Git,你需要设置署名和邮箱: $ git config --global user.name "用户名" $ gi ...

  5. 在Ubuntu 16.10 安装 git 并上传代码至 git.oschina.net

    1. 注册一个账号和创建项目 先在git.oschina.net上注册一个账号和新建一个project ,如project name 是"myTest". 2.安装git sudo ...

  6. 史上最详细git教程

    题外话 虽然这个标题很惊悚,不过还是把你骗进来了,哈哈-各位看官不要着急,耐心往下看 Git是什么 Git是目前世界上最先进的分布式版本控制系统. SVN与Git的最主要的区别 SVN是集中式版本控制 ...

  7. [版本控制之道] Git 常用的命令总结(欢迎收藏备用)

    坚持每天学习,坚持每天复习,技术永远学不完,自己永远要前进 总结日常开发生产中常用的Git版本控制命令 ------------------------------main-------------- ...

  8. 【解决方案】Myeclipse 10 安装 GIT 插件 集成 步骤 图解

    工程开发中,往往要使用到集成GIT ,那么下面说说插件安装步骤 PS:以Myeclipse 10 为例,讲解集成安装步骤. ----------------------main------------ ...

  9. git 命令

    切换仓库地址: git remote set-url origin xxx.git切换分支:git checkout name撤销修改:git checkout -- file删除文件:git rm  ...

  10. git亲测命令

    一.Git新建本地分支与远程分支关联问题 git checkout -b branch_name origin/branch_name 或者 git branch --set-upstream bra ...

随机推荐

  1. Volley源码分析(五)Volley源码总结篇

    volley关键的代码这里已经分析完了,下面梳理一下完整的Volley流程 Volley的使用从构造Request对象开始,Volley默认提供了四种request的实现,StringRequest, ...

  2. The Rock Game

    Before the cows head home for rest and recreation, Farmer John wantsthem to get some intellectual st ...

  3. 记一次Eclipse关于JDK和JRE的问题

    今天同事遇到个问题,发现import package居然报错,但是那个package实际上存在.一般情况某个类有问题或者是该类中的方法有问题,总会在IDE中显示一条红线.但是这次确实是没有问题.我找到 ...

  4. Python之字典的应用

    # 转化为字符串 d = {'key1' : 'value1', 'key2 ': 'value2','key3' : 'value3'} s = str(d) print(s) #python3 结 ...

  5. A. Pride

    You have an array a with length n, you can perform operations. Each operation is like this: choose t ...

  6. Ubuntu忘记密码的解决办法

    ubuntu忘记root密码怎么办?如果普通用户忘记了怎么办 第一种方法: 无论你是否申请了root帐号,或是普通账号密码忘记了都没有问题的! 1.重启ubuntu,随即长按shift进入grub菜单 ...

  7. 深入理解JavaScript系列(23):JavaScript与DOM(上)——也适用于新手

    文档对象模型Document Object Model DOM(Document Object Model,文档对象模型)是一个通过和JavaScript进行内容交互的API. Javascript和 ...

  8. 基于Azure的软件部署和开发系列沙龙

    活动简介: Azure是一种灵活和支持互操作的平台,它可以被用来创建云中运行的应用或者通过基于云的特性来加强现有应用.它开放式的架构给开发者提供了Web应用.互联设备的应用.个人电脑.服务器.或者提供 ...

  9. test zhenai

    web.Document.InvokeScript("eval",new string[]{"document.getElementById('passwordbt'). ...

  10. VS编程,WPF中,获取鼠标相对于当前屏幕坐标的一种方法

    原文:VS编程,WPF中,获取鼠标相对于当前屏幕坐标的一种方法 版权声明:我不生产代码,我只是代码的搬运工. https://blog.csdn.net/qq_43307934/article/det ...