博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Python-S9——Day109-Git及Redis
阅读量:5131 次
发布时间:2019-06-13

本文共 69037 字,大约阅读时间需要 230 分钟。

1、初识Git;

2、Git版本控制之stash和branch;

1、初识Git;

1.1 Git是什么?

  Git是一个用于帮助用户实现“版本控制”的软件;

1.2 Git安装;

GIt官网:

Git的下载链接:

1.3 Git

基础命令:

  • git init
  • git status 
  • git add 文件名
  • git add .
  • git commit -m "提交详细的版本信息,切记!"
  • git log 
  • git reflog
  • git reset --hard 记录ID
  • git checkout
  • git config --global user.email  “你的邮箱”
  • git config --global user.name "你的名字"
  • 注意git颜色的变化!

2、Git版本控制之stash和branch;

stash(暂存)

  • 1、git stash
  • 2、git stash pop
  • 3、git stash list
  • 4、git stash clear
  • 5、git stash apply
  • 6、git stash drop

 

branch(分支)

  • 1、git branch
  • 2、git branch dev
  • 3、git branch bug
  • 4、git checkout master
  • 5、git checkout dev
  • 6、git checkout bug
  • 7、git branch -d dev
  • 8、git checkout master;git merge dev
TQTL911@DESKTOP-U8JDGPP MINGW64 ~/PycharmProjects/dbhot (master)$ pwd/c/Users/TQTL911/PycharmProjects/dbhotTQTL911@DESKTOP-U8JDGPP MINGW64 ~/PycharmProjects/dbhot (master)$ git initReinitialized existing Git repository in C:/Users/TQTL911/PycharmProjects/dbhot/.git/TQTL911@DESKTOP-U8JDGPP MINGW64 ~/PycharmProjects/dbhot (master)$ git statusOn branch masterChanges not staged for commit:  (use "git add 
..." to update what will be committed) (use "git checkout --
..." to discard changes in working directory) modified: .idea/workspace.xml modified: templates/index.htmlno changes added to commit (use "git add" and/or "git commit -a")TQTL911@DESKTOP-U8JDGPP MINGW64 ~/PycharmProjects/dbhot (master)$ git commit -m "提交index.html"On branch masterChanges not staged for commit: modified: .idea/workspace.xml modified: templates/index.htmlno changes added to commitTQTL911@DESKTOP-U8JDGPP MINGW64 ~/PycharmProjects/dbhot (master)$ git logcommit b880b6aa979b742695a7b02e0e72509e6d5d5bec (HEAD -> master)Author: cuixiaozhao
Date: Wed Aug 29 23:30:22 2018 +0800 添加了欧美版本的内容commit 471ecb97981e650c3ae843273c4bfa679294d556Author: cuixiaozhao
Date: Wed Aug 29 23:27:23 2018 +0800 初次提交commit a07f721888e0027a4e60af09138806003dfe126cAuthor: cuixiaozhao
Date: Wed Aug 29 23:21:08 2018 +0800 创建第一个版本TQTL911@DESKTOP-U8JDGPP MINGW64 ~/PycharmProjects/dbhot (master)$ git reflogb880b6a (HEAD -> master) HEAD@{0}: reset: moving to b880b6a1273732 HEAD@{1}: commit: 提交了sqllite.db文件a07f721 HEAD@{
2}: reset: moving to a07f721888e0027a4e60af09138806003dfe126cb880b6a (HEAD -> master) HEAD@{3}: commit: 添加了欧美版本的内容471ecb9 HEAD@{
4}: commit: 初次提交a07f721 HEAD@{
5}: commit (initial): 创建第一个版本TQTL911@DESKTOP-U8JDGPP MINGW64 ~/PycharmProjects/dbhot (master)$ git reset --hardHEAD is now at b880b6a 添加了欧美版本的内容TQTL911@DESKTOP-U8JDGPP MINGW64 ~/PycharmProjects/dbhot (master)$ git config --global user.email "tqtl@tqtl.org"TQTL911@DESKTOP-U8JDGPP MINGW64 ~/PycharmProjects/dbhot (master)$ git config --global user.name "cuixiaozhao"TQTL911@DESKTOP-U8JDGPP MINGW64 ~/PycharmProjects/dbhot (master)$ git logcommit b880b6aa979b742695a7b02e0e72509e6d5d5bec (HEAD -> master)Author: cuixiaozhao
Date: Wed Aug 29 23:30:22 2018 +0800 添加了欧美版本的内容commit 471ecb97981e650c3ae843273c4bfa679294d556Author: cuixiaozhao
Date: Wed Aug 29 23:27:23 2018 +0800 初次提交commit a07f721888e0027a4e60af09138806003dfe126cAuthor: cuixiaozhao
Date: Wed Aug 29 23:21:08 2018 +0800 创建第一个版本TQTL911@DESKTOP-U8JDGPP MINGW64 ~/PycharmProjects/dbhot (master)$ git --helpusage: git [--version] [--help] [-C
] [-c
=
] [--exec-path[=
]] [--html-path] [--man-path] [--info-path] [-p | --paginate | -P | --no-pager] [--no-replace-objects] [--bare] [--git-dir=
] [--work-tree=
] [--namespace=
]
[
]These are common Git commands used in various situations:start a working area (see also: git help tutorial) clone Clone a repository into a new directory init Create an empty Git repository or reinitialize an existing onework on the current change (see also: git help everyday) add Add file contents to the index mv Move or rename a file, a directory, or a symlink reset Reset current HEAD to the specified state rm Remove files from the working tree and from the indexexamine the history and state (see also: git help revisions) bisect Use binary search to find the commit that introduced a bug grep Print lines matching a pattern log Show commit logs show Show various types of objects status Show the working tree statusgrow, mark and tweak your common history branch List, create, or delete branches checkout Switch branches or restore working tree files commit Record changes to the repository diff Show changes between commits, commit and working tree, etc merge Join two or more development histories together rebase Reapply commits on top of another base tip tag Create, list, delete or verify a tag object signed with GPGcollaborate (see also: git help workflows) fetch Download objects and refs from another repository pull Fetch from and integrate with another repository or a local branch push Update remote refs along with associated objects'git help -a' and 'git help -g' list available subcommands and someconcept guides. See 'git help
' or 'git help
'to read about a specific subcommand or concept.TQTL911@DESKTOP-U8JDGPP MINGW64 ~/PycharmProjects/dbhot (master)$ git statusOn branch masternothing to commit, working tree cleanTQTL911@DESKTOP-U8JDGPP MINGW64 ~/PycharmProjects/dbhot (master)$ git reflogb880b6a (HEAD -> master) HEAD@{0}: reset: moving to HEADb880b6a (HEAD -> master) HEAD@{1}: reset: moving to b880b6a1273732 HEAD@{2}: commit: 提交了sqllite.db文件a07f721 HEAD@{ 3}: reset: moving to a07f721888e0027a4e60af09138806003dfe126cb880b6a (HEAD -> master) HEAD@{4}: commit: 添加了欧美版本的内容471ecb9 HEAD@{ 5}: commit: 初次提交a07f721 HEAD@{ 6}: commit (initial): 创建第一个版本TQTL911@DESKTOP-U8JDGPP MINGW64 ~/PycharmProjects/dbhot (master)$ git logcommit b880b6aa979b742695a7b02e0e72509e6d5d5bec (HEAD -> master)Author: cuixiaozhao
Date: Wed Aug 29 23:30:22 2018 +0800 添加了欧美版本的内容commit 471ecb97981e650c3ae843273c4bfa679294d556Author: cuixiaozhao
Date: Wed Aug 29 23:27:23 2018 +0800 初次提交commit a07f721888e0027a4e60af09138806003dfe126cAuthor: cuixiaozhao
Date: Wed Aug 29 23:21:08 2018 +0800 创建第一个版本TQTL911@DESKTOP-U8JDGPP MINGW64 ~/PycharmProjects/dbhot (master)$ git checkoutTQTL911@DESKTOP-U8JDGPP MINGW64 ~/PycharmProjects/dbhot (master)$ git commit -m "崔晓昭git练习"On branch masternothing to commit, working tree cleanTQTL911@DESKTOP-U8JDGPP MINGW64 ~/PycharmProjects/dbhot (master)$ Git reflogb880b6a (HEAD -> master) HEAD@{0}: reset: moving to HEADb880b6a (HEAD -> master) HEAD@{1}: reset: moving to b880b6a1273732 HEAD@{2}: commit: 提交了sqllite.db文件a07f721 HEAD@{ 3}: reset: moving to a07f721888e0027a4e60af09138806003dfe126cb880b6a (HEAD -> master) HEAD@{4}: commit: 添加了欧美版本的内容471ecb9 HEAD@{ 5}: commit: 初次提交a07f721 HEAD@{ 6}: commit (initial): 创建第一个版本TQTL911@DESKTOP-U8JDGPP MINGW64 ~/PycharmProjects/dbhot (master)$ git logcommit b880b6aa979b742695a7b02e0e72509e6d5d5bec (HEAD -> master)Author: cuixiaozhao
Date: Wed Aug 29 23:30:22 2018 +0800 添加了欧美版本的内容commit 471ecb97981e650c3ae843273c4bfa679294d556Author: cuixiaozhao
Date: Wed Aug 29 23:27:23 2018 +0800 初次提交commit a07f721888e0027a4e60af09138806003dfe126cAuthor: cuixiaozhao
Date: Wed Aug 29 23:21:08 2018 +0800 创建第一个版本TQTL911@DESKTOP-U8JDGPP MINGW64 ~/PycharmProjects/dbhot (master)$ git statusOn branch masternothing to commit, working tree cleanTQTL911@DESKTOP-U8JDGPP MINGW64 ~/PycharmProjects/dbhot (master)$ git add .TQTL911@DESKTOP-U8JDGPP MINGW64 ~/PycharmProjects/dbhot (master)$ git add .TQTL911@DESKTOP-U8JDGPP MINGW64 ~/PycharmProjects/dbhot (master)$ git statusOn branch masterChanges to be committed: (use "git reset HEAD
..." to unstage) modified: .idea/workspace.xml modified: templates/index.htmlTQTL911@DESKTOP-U8JDGPP MINGW64 ~/PycharmProjects/dbhot (master)$ git commit -m "delete rh"[master 1edb258] delete rh 2 files changed, 128 insertions(+), 19 deletions(-)TQTL911@DESKTOP-U8JDGPP MINGW64 ~/PycharmProjects/dbhot (master)$ git statusOn branch masternothing to commit, working tree cleanTQTL911@DESKTOP-U8JDGPP MINGW64 ~/PycharmProjects/dbhot (master)$ git reflog1edb258 (HEAD -> master) HEAD@{0}: commit: delete rhb880b6a HEAD@{ 1}: reset: moving to HEADb880b6a HEAD@{ 2}: reset: moving to b880b6a1273732 HEAD@{3}: commit: 提交了sqllite.db文件a07f721 HEAD@{ 4}: reset: moving to a07f721888e0027a4e60af09138806003dfe126cb880b6a HEAD@{ 5}: commit: 添加了欧美版本的内容471ecb9 HEAD@{ 6}: commit: 初次提交a07f721 HEAD@{ 7}: commit (initial): 创建第一个版本TQTL911@DESKTOP-U8JDGPP MINGW64 ~/PycharmProjects/dbhot (master)$ git stashNo local changes to saveTQTL911@DESKTOP-U8JDGPP MINGW64 ~/PycharmProjects/dbhot (master)$ git stash popNo stash entries found.TQTL911@DESKTOP-U8JDGPP MINGW64 ~/PycharmProjects/dbhot (master)$ git add .TQTL911@DESKTOP-U8JDGPP MINGW64 ~/PycharmProjects/dbhot (master)$ git commit -m "start"[master 0729bca] start 1 file changed, 1 deletion(-)TQTL911@DESKTOP-U8JDGPP MINGW64 ~/PycharmProjects/dbhot (master)$ git logcommit 0729bca7d8056171f4ae404fd5dd9481e31fcf9a (HEAD -> master)Author: cuixiaozhao
Date: Thu Aug 30 09:47:12 2018 +0800 startcommit 1edb258bc613bca3f81432e71753269337043537Author: cuixiaozhao
Date: Thu Aug 30 09:44:31 2018 +0800 delete rhcommit b880b6aa979b742695a7b02e0e72509e6d5d5becAuthor: cuixiaozhao
Date: Wed Aug 29 23:30:22 2018 +0800 添加了欧美版本的内容commit 471ecb97981e650c3ae843273c4bfa679294d556Author: cuixiaozhao
Date: Wed Aug 29 23:27:23 2018 +0800 初次提交commit a07f721888e0027a4e60af09138806003dfe126cAuthor: cuixiaozhao
Date: Wed Aug 29 23:21:08 2018 +0800 创建第一个版本TQTL911@DESKTOP-U8JDGPP MINGW64 ~/PycharmProjects/dbhot (master)$ git add .TQTL911@DESKTOP-U8JDGPP MINGW64 ~/PycharmProjects/dbhot (master)$ git commit -m "日韩"[master 7dbf5e4] 日韩 1 file changed, 1 insertion(+)TQTL911@DESKTOP-U8JDGPP MINGW64 ~/PycharmProjects/dbhot (master)$ Git statusOn branch masternothing to commit, working tree cleanTQTL911@DESKTOP-U8JDGPP MINGW64 ~/PycharmProjects/dbhot (master)$ git statusOn branch masternothing to commit, working tree cleanTQTL911@DESKTOP-U8JDGPP MINGW64 ~/PycharmProjects/dbhot (master)$ git statusOn branch masterChanges not staged for commit: (use "git add
..." to update what will be committed) (use "git checkout --
..." to discard changes in working directory) modified: .idea/workspace.xml modified: templates/index.htmlno changes added to commit (use "git add" and/or "git commit -a")TQTL911@DESKTOP-U8JDGPP MINGW64 ~/PycharmProjects/dbhot (master)$ git stashSaved working directory and index state WIP on master: 7dbf5e4 日韩TQTL911@DESKTOP-U8JDGPP MINGW64 ~/PycharmProjects/dbhot (master)$ git statusOn branch masterChanges not staged for commit: (use "git add
..." to update what will be committed) (use "git checkout --
..." to discard changes in working directory) modified: templates/index.htmlno changes added to commit (use "git add" and/or "git commit -a")TQTL911@DESKTOP-U8JDGPP MINGW64 ~/PycharmProjects/dbhot (master)$ git add .TQTL911@DESKTOP-U8JDGPP MINGW64 ~/PycharmProjects/dbhot (master)$ git commit -m "del日韩"[master 50f7baf] del日韩 1 file changed, 1 deletion(-)TQTL911@DESKTOP-U8JDGPP MINGW64 ~/PycharmProjects/dbhot (master)$ git statusOn branch masternothing to commit, working tree cleanTQTL911@DESKTOP-U8JDGPP MINGW64 ~/PycharmProjects/dbhot (master)$ git stash popAuto-merging templates/index.htmlCONFLICT (content): Merge conflict in templates/index.htmlTQTL911@DESKTOP-U8JDGPP MINGW64 ~/PycharmProjects/dbhot (master)$ git stashtemplates/index.html: needs mergetemplates/index.html: needs mergetemplates/index.html: unmerged (65be9c5af8547d4484a792635f31c1d0b11109a9)templates/index.html: unmerged (cdfac89732ee27af4f15c417badff123a4a996c4)templates/index.html: unmerged (6313261801962de004f2f93144513f2a2167ded7)fatal: git-write-tree: error building treesCannot save the current index stateTQTL911@DESKTOP-U8JDGPP MINGW64 ~/PycharmProjects/dbhot (master)$ git add .TQTL911@DESKTOP-U8JDGPP MINGW64 ~/PycharmProjects/dbhot (master)$ git commit -m "在线"[master 6631380] 在线 2 files changed, 217 insertions(+), 4 deletions(-)TQTL911@DESKTOP-U8JDGPP MINGW64 ~/PycharmProjects/dbhot (master)$ Git stash popAuto-merging templates/index.htmlCONFLICT (content): Merge conflict in templates/index.htmlAuto-merging .idea/workspace.xmlCONFLICT (content): Merge conflict in .idea/workspace.xmlTQTL911@DESKTOP-U8JDGPP MINGW64 ~/PycharmProjects/dbhot (master)$ git add .TQTL911@DESKTOP-U8JDGPP MINGW64 ~/PycharmProjects/dbhot (master)$ git commit -m "继续开发"[master 85e0d8a] 继续开发 2 files changed, 8 insertions(+), 7 deletions(-)TQTL911@DESKTOP-U8JDGPP MINGW64 ~/PycharmProjects/dbhot (master)$ Git statusOn branch masternothing to commit, working tree cleanTQTL911@DESKTOP-U8JDGPP MINGW64 ~/PycharmProjects/dbhot (master)$ git stash liststash@{0}: WIP on master: 7dbf5e4 日韩TQTL911@DESKTOP-U8JDGPP MINGW64 ~/PycharmProjects/dbhot (master)$ git statusOn branch masternothing to commit, working tree cleanTQTL911@DESKTOP-U8JDGPP MINGW64 ~/PycharmProjects/dbhot (master)$ git statusOn branch masterChanges not staged for commit: (use "git add
..." to update what will be committed) (use "git checkout --
..." to discard changes in working directory) modified: templates/index.htmlno changes added to commit (use "git add" and/or "git commit -a")TQTL911@DESKTOP-U8JDGPP MINGW64 ~/PycharmProjects/dbhot (master)$ git stashSaved working directory and index state WIP on master: 85e0d8a 继续开发TQTL911@DESKTOP-U8JDGPP MINGW64 ~/PycharmProjects/dbhot (master)$ git stash popOn branch masterChanges not staged for commit: (use "git add
..." to update what will be committed) (use "git checkout --
..." to discard changes in working directory) modified: templates/index.htmlno changes added to commit (use "git add" and/or "git commit -a")Dropped refs/stash@{0} (9c21631693065e6a1825002aca9814a9c94a035b)TQTL911@DESKTOP-U8JDGPP MINGW64 ~/PycharmProjects/dbhot (master)$ git stash liststash@{0}: WIP on master: 7dbf5e4 日韩TQTL911@DESKTOP-U8JDGPP MINGW64 ~/PycharmProjects/dbhot (master)$ git stashSaved working directory and index state WIP on master: 85e0d8a 继续开发TQTL911@DESKTOP-U8JDGPP MINGW64 ~/PycharmProjects/dbhot (master)$ git stash liststash@{0}: WIP on master: 85e0d8a 继续开发stash@{ 1}: WIP on master: 7dbf5e4 日韩TQTL911@DESKTOP-U8JDGPP MINGW64 ~/PycharmProjects/dbhot (master)$ git statusOn branch masternothing to commit, working tree cleanTQTL911@DESKTOP-U8JDGPP MINGW64 ~/PycharmProjects/dbhot (master)$ git statusOn branch masterChanges not staged for commit: (use "git add
..." to update what will be committed) (use "git checkout --
..." to discard changes in working directory) modified: templates/index.htmlno changes added to commit (use "git add" and/or "git commit -a")TQTL911@DESKTOP-U8JDGPP MINGW64 ~/PycharmProjects/dbhot (master)$ git commit -m "直播开发完成"On branch masterChanges not staged for commit: modified: templates/index.htmlno changes added to commitTQTL911@DESKTOP-U8JDGPP MINGW64 ~/PycharmProjects/dbhot (master)$ git statusOn branch masterChanges not staged for commit: (use "git add
..." to update what will be committed) (use "git checkout --
..." to discard changes in working directory) modified: templates/index.htmlno changes added to commit (use "git add" and/or "git commit -a")TQTL911@DESKTOP-U8JDGPP MINGW64 ~/PycharmProjects/dbhot (master)$ git add .TQTL911@DESKTOP-U8JDGPP MINGW64 ~/PycharmProjects/dbhot (master)$ git commit -m "直播开发完成"[master d6f4edf] 直播开发完成 1 file changed, 1 insertion(+), 1 deletion(-)TQTL911@DESKTOP-U8JDGPP MINGW64 ~/PycharmProjects/dbhot (master)$ git statusOn branch masternothing to commit, working tree cleanTQTL911@DESKTOP-U8JDGPP MINGW64 ~/PycharmProjects/dbhot (master)$ git statusOn branch masterChanges not staged for commit: (use "git add
..." to update what will be committed) (use "git checkout --
..." to discard changes in working directory) modified: templates/index.htmlno changes added to commit (use "git add" and/or "git commit -a")TQTL911@DESKTOP-U8JDGPP MINGW64 ~/PycharmProjects/dbhot (master)$ git add .TQTL911@DESKTOP-U8JDGPP MINGW64 ~/PycharmProjects/dbhot (master)$ git statusOn branch masterChanges to be committed: (use "git reset HEAD
..." to unstage) modified: templates/index.htmlTQTL911@DESKTOP-U8JDGPP MINGW64 ~/PycharmProjects/dbhot (master)$ git logcommit d6f4edf06369f731a5b0fff372735149ae103afd (HEAD -> master)Author: cuixiaozhao
Date: Thu Aug 30 10:04:01 2018 +0800commit d6f4edf06369f731a5b0fff372735149ae103afd (HEAD -> master)Author: cuixiaozhao
Date: Thu Aug 30 10:04:01 2018 +0800 直播开发完成commit 85e0d8a8fb958d6dfc5ff786a4bce0cb6b24c628Author: cuixiaozhao
Date: Thu Aug 30 09:57:49 2018 +0800 继续开发commit 6631380f2aad839d06eb557782b7a095bc3a68d8Author: cuixiaozhao
Date: Thu Aug 30 09:53:52 2018 +0800 在线commit 50f7baf3ee11befe9b6ff4fac4e54641d2cff595Author: cuixiaozhao
Date: Thu Aug 30 09:51:44 2018 +0800 del日韩commit 7dbf5e4a7c3f145eb2d66d84dfee7f5fe05b32e4Author: cuixiaozhao
Date: Thu Aug 30 09:47:43 2018 +0800 日韩commit 0729bca7d8056171f4ae404fd5dd9481e31fcf9aAuthor: cuixiaozhao
Date: Thu Aug 30 09:47:12 2018 +0800 startcommit 1edb258bc613bca3f81432e71753269337043537Author: cuixiaozhao
Date: Thu Aug 30 09:44:31 2018 +0800 delete rh...skipping...commit d6f4edf06369f731a5b0fff372735149ae103afd (HEAD -> master)Author: cuixiaozhao
Date: Thu Aug 30 10:04:01 2018 +0800 直播开发完成commit 85e0d8a8fb958d6dfc5ff786a4bce0cb6b24c628Author: cuixiaozhao
Date: Thu Aug 30 09:57:49 2018 +0800 继续开发commit 6631380f2aad839d06eb557782b7a095bc3a68d8Author: cuixiaozhao
Date: Thu Aug 30 09:53:52 2018 +0800 在线commit 50f7baf3ee11befe9b6ff4fac4e54641d2cff595Author: cuixiaozhao
Date: Thu Aug 30 09:51:44 2018 +0800 del日韩commit 7dbf5e4a7c3f145eb2d66d84dfee7f5fe05b32e4Author: cuixiaozhao
Date: Thu Aug 30 09:47:43 2018 +0800 日韩commit 0729bca7d8056171f4ae404fd5dd9481e31fcf9aAuthor: cuixiaozhao
Date: Thu Aug 30 09:47:12 2018 +0800 startcommit 1edb258bc613bca3f81432e71753269337043537Author: cuixiaozhao
Date: Thu Aug 30 09:44:31 2018 +0800 delete rhAuthor: cuixiaozhao
Date: Thu Aug 30 10:04:01 2018 +0800 直播开发完成commit 85e0d8a8fb958d6dfc5ff786a4bce0cb6b24c628Author: cuixiaozhao
Date: Thu Aug 30 09:57:49 2018 +0800 继续开发commit 6631380f2aad839d06eb557782b7a095bc3a68d8Author: cuixiaozhao
Date: Thu Aug 30 09:53:52 2018 +0800 在线commit 50f7baf3ee11befe9b6ff4fac4e54641d2cff595Author: cuixiaozhao
Date: Thu Aug 30 09:51:44 2018 +0800commit d6f4edf06369f731a5b0fff372735149ae103afd (HEAD -> master)Author: cuixiaozhao
Date: Thu Aug 30 10:04:01 2018 +0800 直播开发完成commit 85e0d8a8fb958d6dfc5ff786a4bce0cb6b24c628Author: cuixiaozhao
Date: Thu Aug 30 09:57:49 2018 +0800 继续开发commit 6631380f2aad839d06eb557782b7a095bc3a68d8Author: cuixiaozhao
Date: Thu Aug 30 09:53:52 2018 +0800 在线 del日韩commit 7dbf5e4a7c3f145eb2d66d84dfee7f5fe05b32e4Author: cuixiaozhao
Date: Thu Aug 30 09:47:43 2018 +0800 日韩commit 0729bca7d8056171f4ae404fd5dd9481e31fcf9aAuthor: cuixiaozhao
Date: Thu Aug 30 09:47:12 2018 +0800 startcommit 1edb258bc613bca3f81432e71753269337043537Author: cuixiaozhao
Date: Thu Aug 30 09:44:31 2018 +0800 delete rhcommit b880b6aa979b742695a7b02e0e72509e6d5d5becAuthor: cuixiaozhao
git statusOn branch masterChanges to be committed: (use "git reset HEAD
..." to unstage) modified: templates/index.htmlTQTL911@DESKTOP-U8JDGPP MINGW64 ~/PycharmProjects/dbhot (master)$ git reflogd6f4edf (HEAD -> master) HEAD@{0}: commit: 直播开发完成85e0d8a HEAD@{ 1}: reset: moving to HEAD85e0d8a HEAD@{ 2}: reset: moving to HEAD85e0d8a HEAD@{ 3}: commit: 继续开发6631380 HEAD@{4}: commit: 在线50f7baf HEAD@{ 5}: commit: del日韩7dbf5e4 HEAD@{ 6}: reset: moving to HEAD7dbf5e4 HEAD@{ 7}: commit: 日韩0729bca HEAD@{ 8}: commit: start1edb258 HEAD@{ 9}: commit: delete rhb880b6a HEAD@{ 10}: reset: moving to HEADb880b6a HEAD@{ 11}: reset: moving to b880b6a1273732 HEAD@{12}: commit: 提交了sqllite.db文件a07f721 HEAD@{ 13}: reset: moving to a07f721888e0027a4e60af09138806003dfe126cb880b6a HEAD@{ 14}: commit: 添加了欧美版本的内容471ecb9 HEAD@{ 15}: commit: 初次提交a07f721 HEAD@{ 16}: commit (initial): 创建第一个版本TQTL911@DESKTOP-U8JDGPP MINGW64 ~/PycharmProjects/dbhot (master)$ git reset --hard d6f4edfHEAD is now at d6f4edf 直播开发完成TQTL911@DESKTOP-U8JDGPP MINGW64 ~/PycharmProjects/dbhot (master)$ git branch devTQTL911@DESKTOP-U8JDGPP MINGW64 ~/PycharmProjects/dbhot (master)$ git branch dev* masterTQTL911@DESKTOP-U8JDGPP MINGW64 ~/PycharmProjects/dbhot (master)$ git checkout devSwitched to branch 'dev'TQTL911@DESKTOP-U8JDGPP MINGW64 ~/PycharmProjects/dbhot (dev)$ git branch* dev masterTQTL911@DESKTOP-U8JDGPP MINGW64 ~/PycharmProjects/dbhot (dev)$ git branch materTQTL911@DESKTOP-U8JDGPP MINGW64 ~/PycharmProjects/dbhot (dev)$ git branch masterfatal: A branch named 'master' already exists.TQTL911@DESKTOP-U8JDGPP MINGW64 ~/PycharmProjects/dbhot (dev)$ git add .TQTL911@DESKTOP-U8JDGPP MINGW64 ~/PycharmProjects/dbhot (dev)$ git commit -m "小视频开发了1/2"[dev 1a1d14f] 小视频开发了1/2 1 file changed, 1 insertion(+)TQTL911@DESKTOP-U8JDGPP MINGW64 ~/PycharmProjects/dbhot (dev)$ Git statusOn branch devnothing to commit, working tree cleanTQTL911@DESKTOP-U8JDGPP MINGW64 ~/PycharmProjects/dbhot (dev)$ git checkou mastergit: 'checkou' is not a git command. See 'git --help'.TQTL911@DESKTOP-U8JDGPP MINGW64 ~/PycharmProjects/dbhot (dev)$ git checkout masterSwitched to branch 'master'TQTL911@DESKTOP-U8JDGPP MINGW64 ~/PycharmProjects/dbhot (master)$ git checkout devSwitched to branch 'dev'TQTL911@DESKTOP-U8JDGPP MINGW64 ~/PycharmProjects/dbhot (dev)$ git checkout masterSwitched to branch 'master'TQTL911@DESKTOP-U8JDGPP MINGW64 ~/PycharmProjects/dbhot (master)$ git branch rhTQTL911@DESKTOP-U8JDGPP MINGW64 ~/PycharmProjects/dbhot (master)$ git checkout rhSwitched to branch 'rh'TQTL911@DESKTOP-U8JDGPP MINGW64 ~/PycharmProjects/dbhot (rh)$ git add .TQTL911@DESKTOP-U8JDGPP MINGW64 ~/PycharmProjects/dbhot (rh)$ git commit - m "添加了日韩的模块"error: pathspec '-' did not match any file(s) known to git.error: pathspec 'm' did not match any file(s) known to git.error: pathspec '添加了日韩的模块' did not match any file(s) known to git.TQTL911@DESKTOP-U8JDGPP MINGW64 ~/PycharmProjects/dbhot (rh)$ Git statusOn branch rhChanges to be committed: (use "git reset HEAD
..." to unstage) modified: templates/index.htmlTQTL911@DESKTOP-U8JDGPP MINGW64 ~/PycharmProjects/dbhot (rh)$ git checkout masterSwitched to branch 'master'M templates/index.htmlTQTL911@DESKTOP-U8JDGPP MINGW64 ~/PycharmProjects/dbhot (master)$ git merge rhAlready up to date.TQTL911@DESKTOP-U8JDGPP MINGW64 ~/PycharmProjects/dbhot (master)$ git logcommit d6f4edf06369f731a5b0fff372735149ae103afd (HEAD -> master, rh, mater)Author: cuixiaozhao
Date: Thu Aug 30 10:04:01 2018 +0800 直播开发完成commit 85e0d8a8fb958d6dfc5ff786a4bce0cb6b24c628Author: cuixiaozhao
Date: Thu Aug 30 09:57:49 2018 +0800 继续开发commit 6631380f2aad839d06eb557782b7a095bc3a68d8Author: cuixiaozhao
Date: Thu Aug 30 09:53:52 2018 +0800 在线commit d6f4edf06369f731a5b0fff372735149ae103afd (HEAD -> master, rh, mater)Author: cuixiaozhao
Date: Thu Aug 30 10:04:01 2018 +0800 直播开发完成commit 85e0d8a8fb958d6dfc5ff786a4bce0cb6b24c628Author: cuixiaozhao
Date: Thu Aug 30 09:57:49 2018 +0800 继续开发commit 6631380f2aad839d06eb557782b7a095bc3a68d8Author: cuixiaozhao
Date: Thu Aug 30 09:53:52 2018 +0800 在线commit d6f4edf06369f731a5b0fff372735149ae103afd (HEAD -> master, rh, mater)Author: cuixiaozhao
Date: Thu Aug 30 10:04:01 2018 +0800 直播开发完成commit 85e0d8a8fb958d6dfc5ff786a4bce0cb6b24c628Author: cuixiaozhao
Date: Thu Aug 30 09:57:49 2018 +0800 继续开发commit 6631380f2aad839d06eb557782b7a095bc3a68d8Author: cuixiaozhao
Date: Thu Aug 30 09:53:52 2018 +0800 在线commit d6f4edf06369f731a5b0fff372735149ae103afd (HEAD -> master, rh, mater)Author: cuixiaozhao
Date: Thu Aug 30 10:04:01 2018 +0800 直播开发完成commit 85e0d8a8fb958d6dfc5ff786a4bce0cb6b24c628Author: cuixiaozhao
Date: Thu Aug 30 09:57:49 2018 +0800 继续开发commit 6631380f2aad839d06eb557782b7a095bc3a68d8Author: cuixiaozhao
Date: Thu Aug 30 09:53:52 2018 +0800 在线commit d6f4edf06369f731a5b0fff372735149ae103afd (HEAD -> master, rh, mater)Author: cuixiaozhao
Date: Thu Aug 30 10:04:01 2018 +0800 直播开发完成commit d6f4edf06369f731a5b0fff372735149ae103afd (HEAD -> master, rh, mater)Author: cuixiaozhao
Date: Thu Aug 30 10:04:01 2018 +0800 直播开发完成commit 85e0d8a8fb958d6dfc5ff786a4bce0cb6b24c628Author: cuixiaozhao
Date: Thu Aug 30 09:57:49 2018 +0800 继续开发commit 6631380f2aad839d06eb557782b7a095bc3a68d8Author: cuixiaozhao
Date: Thu Aug 30 09:53:52 2018 +0800 在线commit 50f7baf3ee11befe9b6ff4fac4e54641d2cff595Author: cuixiaozhao
Date: Thu Aug 30 09:51:44 2018 +0800 del日韩commit 7dbf5e4a7c3f145eb2d66d84dfee7f5fe05b32e4Author: cuixiaozhao
Date: Thu Aug 30 09:47:43 2018 +0800 日韩commit 0729bca7d8056171f4ae404fd5dd9481e31fcf9aAuthor: cuixiaozhao
Date: Thu Aug 30 09:47:12 2018 +0800 startcommit 1edb258bc613bca3f81432e71753269337043537Author: cuixiaozhao
Date: Thu Aug 30 09:44:31 2018 +0800 delete rhcommit b880b6aa979b742695a7b02e0e72509e6d5d5becAuthor: cuixiaozhao
Date: Wed Aug 29 23:30:22 2018 +0800 添加了欧美版本的内容commit 471ecb97981e650c3ae843273c4bfa679294d556Author: cuixiaozhao
Date: Wed Aug 29 23:27:23 2018 +0800 初次提交commit a07f721888e0027a4e60af09138806003dfe126cAuthor: cuixiaozhao
Date: Wed Aug 29 23:21:08 2018 +0800 创建第一个版本commit d6f4edf06369f731a5b0fff372735149ae103afd (HEAD -> master, rh, mater)Author: cuixiaozhao
Date: Thu Aug 30 10:04:01 2018 +0800 直播开发完成commit 85e0d8a8fb958d6dfc5ff786a4bce0cb6b24c628Author: cuixiaozhao
Date: Thu Aug 30 09:57:49 2018 +0800 继续开发commit 6631380f2aad839d06eb557782b7a095bc3a68d8Author: cuixiaozhao
Date: Thu Aug 30 09:53:52 2018 +0800commit 6631380f2aad839d06eb557782b7a095bc3a68d8Author: cuixiaozhao
Date: Thu Aug 30 09:53:52 2018 +0800 在线commit 50f7baf3ee11befe9b6ff4fac4e54641d2cff595Author: cuixiaozhao
Date: Thu Aug 30 09:51:44 2018 +0800 del日韩commit 7dbf5e4a7c3f145eb2d66d84dfee7f5fe05b32e4Author: cuixiaozhao
Date: Thu Aug 30 09:47:43 2018 +0800 日韩commit 0729bca7d8056171f4ae404fd5dd9481e31fcf9aAuthor: cuixiaozhao
Date: Thu Aug 30 09:47:12 2018 +0800 startcommit 1edb258bc613bca3f81432e71753269337043537Author: cuixiaozhao
Date: Thu Aug 30 09:44:31 2018 +0800 delete rhcommit b880b6aa979b742695a7b02e0e72509e6d5d5becAuthor: cuixiaozhao
Date: Wed Aug 29 23:30:22 2018 +0800 添加了欧美版本的内容commit 471ecb97981e650c3ae843273c4bfa679294d556Author: cuixiaozhao
Date: Wed Aug 29 23:27:23 2018 +0800 初次提交commit a07f721888e0027a4e60af09138806003dfe126cAuthor: cuixiaozhao
Date: Wed Aug 29 23:21:08 2018 +0800 创建第一个版本(END)BBBTQTL911@DESKTOP-U8JDGPP MINGW64 ~/PycharmProjects/dbhot (master)TQTL911@DESKTOP-U8JDGPP MINGW64 ~/PycharmProjects/dbhot (master)$TQTL911@DESKTOP-U8JDGPP MINGW64 ~/PycharmProjects/dbhot (master)$TQTL911@DESKTOP-U8JDGPP MINGW64 ~/PycharmProjects/dbhot (master)$TQTL911@DESKTOP-U8JDGPP MINGW64 ~/PycharmProjects/dbhot (master)$TQTL911@DESKTOP-U8JDGPP MINGW64 ~/PycharmProjects/dbhot (master)$TQTL911@DESKTOP-U8JDGPP MINGW64 ~/PycharmProjects/dbhot (master)$ git logcommit d6f4edf06369f731a5b0fff372735149ae103afd (HEAD -> master, rh, mater)Author: cuixiaozhao
Date: Thu Aug 30 10:04:01 2018 +0800 直播开发完成commit 85e0d8a8fb958d6dfc5ff786a4bce0cb6b24c628Author: cuixiaozhao
Date: Thu Aug 30 09:57:49 2018 +0800 继续开发commit 6631380f2aad839d06eb557782b7a095bc3a68d8Author: cuixiaozhao
Date: Thu Aug 30 09:53:52 2018 +0800 在线commit 50f7baf3ee11befe9b6ff4fac4e54641d2cff595Author: cuixiaozhao
Date: Thu Aug 30 09:51:44 2018 +0800 del日韩commit 7dbf5e4a7c3f145eb2d66d84dfee7f5fe05b32e4Author: cuixiaozhao
Date: Thu Aug 30 09:47:43 2018 +0800 日韩commit 0729bca7d8056171f4ae404fd5dd9481e31fcf9aAuthor: cuixiaozhao
Date: Thu Aug 30 09:47:12 2018 +0800 startcommit 1edb258bc613bca3f81432e71753269337043537Author: cuixiaozhao
Date: Thu Aug 30 09:44:31 2018 +0800 delete rh...skipping...commit 50f7baf3ee11befe9b6ff4fac4e54641d2cff595Author: cuixiaozhao
Date: Thu Aug 30 09:51:44 2018 +0800 del日韩commit 7dbf5e4a7c3f145eb2d66d84dfee7f5fe05b32e4Author: cuixiaozhao
Date: Thu Aug 30 09:47:43 2018 +0800 日韩commit 0729bca7d8056171f4ae404fd5dd9481e31fcf9aAuthor: cuixiaozhao
Date: Thu Aug 30 09:47:12 2018 +0800 startcommit 1edb258bc613bca3f81432e71753269337043537Author: cuixiaozhao
Date: Thu Aug 30 09:44:31 2018 +0800 delete rhcommit b880b6aa979b742695a7b02e0e72509e6d5d5becAuthor: cuixiaozhao
Date: Wed Aug 29 23:30:22 2018 +0800 添加了欧美版本的内容commit 471ecb97981e650c3ae843273c4bfa679294d556Author: cuixiaozhao
Date: Wed Aug 29 23:27:23 2018 +0800 初次提交commit a07f721888e0027a4e60af09138806003dfe126cAuthor: cuixiaozhao
Date: Wed Aug 29 23:21:08 2018 +0800 创建第一个版本...skipping...commit 50f7baf3ee11befe9b6ff4fac4e54641d2cff595Author: cuixiaozhao
Date: Thu Aug 30 09:51:44 2018 +0800 del日韩commit 7dbf5e4a7c3f145eb2d66d84dfee7f5fe05b32e4Author: cuixiaozhao
Date: Thu Aug 30 09:47:43 2018 +0800 日韩commit 0729bca7d8056171f4ae404fd5dd9481e31fcf9aAuthor: cuixiaozhao
Date: Thu Aug 30 09:47:12 2018 +0800 startcommit 1edb258bc613bca3f81432e71753269337043537Author: cuixiaozhao
Date: Thu Aug 30 09:44:31 2018 +0800 delete rhcommit b880b6aa979b742695a7b02e0e72509e6d5d5becAuthor: cuixiaozhao
Date: Wed Aug 29 23:30:22 2018 +0800 添加了欧美版本的内容commit 471ecb97981e650c3ae843273c4bfa679294d556Author: cuixiaozhao
Date: Wed Aug 29 23:27:23 2018 +0800 初次提交commit a07f721888e0027a4e60af09138806003dfe126cAuthor: cuixiaozhao
Date: Wed Aug 29 23:21:08 2018 +0800 创建第一个版本...skipping...commit 50f7baf3ee11befe9b6ff4fac4e54641d2cff595Author: cuixiaozhao
Date: Thu Aug 30 09:51:44 2018 +0800 del日韩commit 7dbf5e4a7c3f145eb2d66d84dfee7f5fe05b32e4Author: cuixiaozhao
Date: Thu Aug 30 09:47:43 2018 +0800 日韩commit 0729bca7d8056171f4ae404fd5dd9481e31fcf9aAuthor: cuixiaozhao
Date: Thu Aug 30 09:47:12 2018 +0800 startcommit 1edb258bc613bca3f81432e71753269337043537Author: cuixiaozhao
Date: Thu Aug 30 09:44:31 2018 +0800 delete rhcommit b880b6aa979b742695a7b02e0e72509e6d5d5becAuthor: cuixiaozhao
Date: Wed Aug 29 23:30:22 2018 +0800 添加了欧美版本的内容commit 471ecb97981e650c3ae843273c4bfa679294d556Author: cuixiaozhao
Date: Wed Aug 29 23:27:23 2018 +0800 初次提交commit a07f721888e0027a4e60af09138806003dfe126cAuthor: cuixiaozhao
Date: Wed Aug 29 23:21:08 2018 +0800 创建第一个版本...skipping...commit 50f7baf3ee11befe9b6ff4fac4e54641d2cff595Author: cuixiaozhao
Date: Thu Aug 30 09:51:44 2018 +0800 del日韩commit 7dbf5e4a7c3f145eb2d66d84dfee7f5fe05b32e4Author: cuixiaozhao
Date: Thu Aug 30 09:47:43 2018 +0800 日韩commit 0729bca7d8056171f4ae404fd5dd9481e31fcf9aAuthor: cuixiaozhao
Date: Thu Aug 30 09:47:12 2018 +0800 startcommit 1edb258bc613bca3f81432e71753269337043537Author: cuixiaozhao
Date: Thu Aug 30 09:44:31 2018 +0800 delete rhcommit b880b6aa979b742695a7b02e0e72509e6d5d5becAuthor: cuixiaozhao
Date: Wed Aug 29 23:30:22 2018 +0800 添加了欧美版本的内容commit 471ecb97981e650c3ae843273c4bfa679294d556Author: cuixiaozhao
Date: Wed Aug 29 23:27:23 2018 +0800 初次提交commit a07f721888e0027a4e60af09138806003dfe126cAuthor: cuixiaozhao
Date: Wed Aug 29 23:21:08 2018 +0800 创建第一个版本...skipping...commit 50f7baf3ee11befe9b6ff4fac4e54641d2cff595Author: cuixiaozhao
Date: Thu Aug 30 09:51:44 2018 +0800 del日韩commit 7dbf5e4a7c3f145eb2d66d84dfee7f5fe05b32e4Author: cuixiaozhao
Date: Thu Aug 30 09:47:43 2018 +0800 日韩commit 0729bca7d8056171f4ae404fd5dd9481e31fcf9aAuthor: cuixiaozhao
Date: Thu Aug 30 09:47:12 2018 +0800 startcommit 1edb258bc613bca3f81432e71753269337043537Author: cuixiaozhao
Date: Thu Aug 30 09:44:31 2018 +0800 delete rhcommit b880b6aa979b742695a7b02e0e72509e6d5d5becAuthor: cuixiaozhao
Date: Wed Aug 29 23:30:22 2018 +0800 添加了欧美版本的内容commit 471ecb97981e650c3ae843273c4bfa679294d556Author: cuixiaozhao
Date: Wed Aug 29 23:27:23 2018 +0800 初次提交commit a07f721888e0027a4e60af09138806003dfe126cAuthor: cuixiaozhao
Date: Wed Aug 29 23:21:08 2018 +0800 创建第一个版本...skipping...commit 50f7baf3ee11befe9b6ff4fac4e54641d2cff595Author: cuixiaozhao
Date: Thu Aug 30 09:51:44 2018 +0800 del日韩commit 7dbf5e4a7c3f145eb2d66d84dfee7f5fe05b32e4Author: cuixiaozhao
Date: Thu Aug 30 09:47:43 2018 +0800 日韩commit 0729bca7d8056171f4ae404fd5dd9481e31fcf9aAuthor: cuixiaozhao
Date: Thu Aug 30 09:47:12 2018 +0800 startcommit 1edb258bc613bca3f81432e71753269337043537Author: cuixiaozhao
Date: Thu Aug 30 09:44:31 2018 +0800 delete rhcommit b880b6aa979b742695a7b02e0e72509e6d5d5becAuthor: cuixiaozhao
Date: Wed Aug 29 23:30:22 2018 +0800 添加了欧美版本的内容commit 471ecb97981e650c3ae843273c4bfa679294d556Author: cuixiaozhao
Date: Wed Aug 29 23:27:23 2018 +0800 初次提交commit a07f721888e0027a4e60af09138806003dfe126cAuthor: cuixiaozhao
Date: Wed Aug 29 23:21:08 2018 +0800 创建第一个版本...skipping...commit 50f7baf3ee11befe9b6ff4fac4e54641d2cff595Author: cuixiaozhao
Date: Thu Aug 30 09:51:44 2018 +0800 del日韩commit 7dbf5e4a7c3f145eb2d66d84dfee7f5fe05b32e4Author: cuixiaozhao
Date: Thu Aug 30 09:47:43 2018 +0800 日韩commit 0729bca7d8056171f4ae404fd5dd9481e31fcf9aAuthor: cuixiaozhao
Date: Thu Aug 30 09:47:12 2018 +0800 startcommit 1edb258bc613bca3f81432e71753269337043537Author: cuixiaozhao
Date: Thu Aug 30 09:44:31 2018 +0800 delete rhcommit b880b6aa979b742695a7b02e0e72509e6d5d5becAuthor: cuixiaozhao
Date: Wed Aug 29 23:30:22 2018 +0800 添加了欧美版本的内容commit 471ecb97981e650c3ae843273c4bfa679294d556Author: cuixiaozhao
Date: Wed Aug 29 23:27:23 2018 +0800 初次提交commit a07f721888e0027a4e60af09138806003dfe126cAuthor: cuixiaozhao
Date: Wed Aug 29 23:21:08 2018 +0800 创建第一个版本...skipping...commit 50f7baf3ee11befe9b6ff4fac4e54641d2cff595Author: cuixiaozhao
Date: Thu Aug 30 09:51:44 2018 +0800 del日韩commit 7dbf5e4a7c3f145eb2d66d84dfee7f5fe05b32e4Author: cuixiaozhao
Date: Thu Aug 30 09:47:43 2018 +0800 日韩commit 0729bca7d8056171f4ae404fd5dd9481e31fcf9aAuthor: cuixiaozhao
Date: Thu Aug 30 09:47:12 2018 +0800 startcommit 1edb258bc613bca3f81432e71753269337043537Author: cuixiaozhao
Date: Thu Aug 30 09:44:31 2018 +0800 delete rhcommit b880b6aa979b742695a7b02e0e72509e6d5d5becAuthor: cuixiaozhao
Date: Wed Aug 29 23:30:22 2018 +0800 添加了欧美版本的内容commit 471ecb97981e650c3ae843273c4bfa679294d556Author: cuixiaozhao
Date: Wed Aug 29 23:27:23 2018 +0800 初次提交commit a07f721888e0027a4e60af09138806003dfe126cAuthor: cuixiaozhao
Date: Wed Aug 29 23:21:08 2018 +0800 创建第一个版本...skipping...commit 50f7baf3ee11befe9b6ff4fac4e54641d2cff595Author: cuixiaozhao
Date: Thu Aug 30 09:51:44 2018 +0800 del日韩commit 7dbf5e4a7c3f145eb2d66d84dfee7f5fe05b32e4Author: cuixiaozhao
Date: Thu Aug 30 09:47:43 2018 +0800 日韩commit 0729bca7d8056171f4ae404fd5dd9481e31fcf9aAuthor: cuixiaozhao
Date: Thu Aug 30 09:47:12 2018 +0800 startcommit 1edb258bc613bca3f81432e71753269337043537Author: cuixiaozhao
Date: Thu Aug 30 09:44:31 2018 +0800 delete rhcommit b880b6aa979b742695a7b02e0e72509e6d5d5becAuthor: cuixiaozhao
Date: Wed Aug 29 23:30:22 2018 +0800 添加了欧美版本的内容commit 471ecb97981e650c3ae843273c4bfa679294d556Author: cuixiaozhao
Date: Wed Aug 29 23:27:23 2018 +0800 初次提交commit a07f721888e0027a4e60af09138806003dfe126cAuthor: cuixiaozhao
Date: Wed Aug 29 23:21:08 2018 +0800 创建第一个版本...skipping...commit 50f7baf3ee11befe9b6ff4fac4e54641d2cff595Author: cuixiaozhao
Date: Thu Aug 30 09:51:44 2018 +0800 del日韩commit 7dbf5e4a7c3f145eb2d66d84dfee7f5fe05b32e4Author: cuixiaozhao
Date: Thu Aug 30 09:47:43 2018 +0800 日韩commit 0729bca7d8056171f4ae404fd5dd9481e31fcf9aAuthor: cuixiaozhao
Date: Thu Aug 30 09:47:12 2018 +0800 startcommit 1edb258bc613bca3f81432e71753269337043537Author: cuixiaozhao
Date: Thu Aug 30 09:44:31 2018 +0800 delete rhcommit b880b6aa979b742695a7b02e0e72509e6d5d5becAuthor: cuixiaozhao
Date: Wed Aug 29 23:30:22 2018 +0800 添加了欧美版本的内容commit 471ecb97981e650c3ae843273c4bfa679294d556Author: cuixiaozhao
Date: Wed Aug 29 23:27:23 2018 +0800 初次提交commit a07f721888e0027a4e60af09138806003dfe126cAuthor: cuixiaozhao
Date: Wed Aug 29 23:21:08 2018 +0800 创建第一个版本...skipping...commit 50f7baf3ee11befe9b6ff4fac4e54641d2cff595Author: cuixiaozhao
Date: Thu Aug 30 09:51:44 2018 +0800 del日韩commit 7dbf5e4a7c3f145eb2d66d84dfee7f5fe05b32e4Author: cuixiaozhao
Date: Thu Aug 30 09:47:43 2018 +0800 日韩commit 0729bca7d8056171f4ae404fd5dd9481e31fcf9aAuthor: cuixiaozhao
Date: Thu Aug 30 09:47:12 2018 +0800 startcommit 1edb258bc613bca3f81432e71753269337043537Author: cuixiaozhao
Date: Thu Aug 30 09:44:31 2018 +0800 delete rhcommit b880b6aa979b742695a7b02e0e72509e6d5d5becAuthor: cuixiaozhao
Date: Wed Aug 29 23:30:22 2018 +0800 添加了欧美版本的内容commit 471ecb97981e650c3ae843273c4bfa679294d556Author: cuixiaozhao
Date: Wed Aug 29 23:27:23 2018 +0800 初次提交commit a07f721888e0027a4e60af09138806003dfe126cAuthor: cuixiaozhao
Date: Wed Aug 29 23:21:08 2018 +0800 创建第一个版本...skipping...commit 50f7baf3ee11befe9b6ff4fac4e54641d2cff595Author: cuixiaozhao
Date: Thu Aug 30 09:51:44 2018 +0800 del日韩commit 7dbf5e4a7c3f145eb2d66d84dfee7f5fe05b32e4Author: cuixiaozhao
Date: Thu Aug 30 09:47:43 2018 +0800 日韩commit 0729bca7d8056171f4ae404fd5dd9481e31fcf9aAuthor: cuixiaozhao
Date: Thu Aug 30 09:47:12 2018 +0800 startcommit 1edb258bc613bca3f81432e71753269337043537Author: cuixiaozhao
Date: Thu Aug 30 09:44:31 2018 +0800 delete rhcommit b880b6aa979b742695a7b02e0e72509e6d5d5becAuthor: cuixiaozhao
Date: Wed Aug 29 23:30:22 2018 +0800 添加了欧美版本的内容commit 471ecb97981e650c3ae843273c4bfa679294d556Author: cuixiaozhao
Date: Wed Aug 29 23:27:23 2018 +0800 初次提交commit a07f721888e0027a4e60af09138806003dfe126cAuthor: cuixiaozhao
Date: Wed Aug 29 23:21:08 2018 +0800 创建第一个版本...skipping...commit 50f7baf3ee11befe9b6ff4fac4e54641d2cff595Author: cuixiaozhao
Date: Thu Aug 30 09:51:44 2018 +0800 del日韩commit 7dbf5e4a7c3f145eb2d66d84dfee7f5fe05b32e4Author: cuixiaozhao
Date: Thu Aug 30 09:47:43 2018 +0800 日韩commit 0729bca7d8056171f4ae404fd5dd9481e31fcf9aAuthor: cuixiaozhao
Date: Thu Aug 30 09:47:12 2018 +0800 startcommit 1edb258bc613bca3f81432e71753269337043537Author: cuixiaozhao
Date: Thu Aug 30 09:44:31 2018 +0800 delete rhcommit b880b6aa979b742695a7b02e0e72509e6d5d5becAuthor: cuixiaozhao
Date: Wed Aug 29 23:30:22 2018 +0800 添加了欧美版本的内容commit 471ecb97981e650c3ae843273c4bfa679294d556Author: cuixiaozhao
Date: Wed Aug 29 23:27:23 2018 +0800 初次提交commit a07f721888e0027a4e60af09138806003dfe126cAuthor: cuixiaozhao
Date: Wed Aug 29 23:21:08 2018 +0800 创建第一个版本...skipping...commit 50f7baf3ee11befe9b6ff4fac4e54641d2cff595Author: cuixiaozhao
Date: Thu Aug 30 09:51:44 2018 +0800 del日韩commit 7dbf5e4a7c3f145eb2d66d84dfee7f5fe05b32e4Author: cuixiaozhao
Date: Thu Aug 30 09:47:43 2018 +0800 日韩commit 0729bca7d8056171f4ae404fd5dd9481e31fcf9aAuthor: cuixiaozhao
Date: Thu Aug 30 09:47:12 2018 +0800 startcommit 1edb258bc613bca3f81432e71753269337043537Author: cuixiaozhao
Date: Thu Aug 30 09:44:31 2018 +0800 delete rhcommit b880b6aa979b742695a7b02e0e72509e6d5d5becAuthor: cuixiaozhao
Date: Wed Aug 29 23:30:22 2018 +0800 添加了欧美版本的内容commit 471ecb97981e650c3ae843273c4bfa679294d556Author: cuixiaozhao
Date: Wed Aug 29 23:27:23 2018 +0800 初次提交commit a07f721888e0027a4e60af09138806003dfe126cAuthor: cuixiaozhao
Date: Wed Aug 29 23:21:08 2018 +0800 创建第一个版本...skipping...commit 50f7baf3ee11befe9b6ff4fac4e54641d2cff595Author: cuixiaozhao
Date: Thu Aug 30 09:51:44 2018 +0800 del日韩commit 7dbf5e4a7c3f145eb2d66d84dfee7f5fe05b32e4Author: cuixiaozhao
Date: Thu Aug 30 09:47:43 2018 +0800 日韩commit 0729bca7d8056171f4ae404fd5dd9481e31fcf9aAuthor: cuixiaozhao
Date: Thu Aug 30 09:47:12 2018 +0800 startcommit 1edb258bc613bca3f81432e71753269337043537Author: cuixiaozhao
Date: Thu Aug 30 09:44:31 2018 +0800 delete rhcommit b880b6aa979b742695a7b02e0e72509e6d5d5becAuthor: cuixiaozhao
Date: Wed Aug 29 23:30:22 2018 +0800 添加了欧美版本的内容commit 471ecb97981e650c3ae843273c4bfa679294d556Author: cuixiaozhao
Date: Wed Aug 29 23:27:23 2018 +0800 初次提交commit a07f721888e0027a4e60af09138806003dfe126cAuthor: cuixiaozhao
Date: Wed Aug 29 23:21:08 2018 +0800 创建第一个版本...skipping...commit d6f4edf06369f731a5b0fff372735149ae103afd (HEAD -> master, rh, mater)Author: cuixiaozhao
Date: Thu Aug 30 10:04:01 2018 +0800 直播开发完成commit 85e0d8a8fb958d6dfc5ff786a4bce0cb6b24c628Author: cuixiaozhao
Date: Thu Aug 30 09:57:49 2018 +0800 继续开发commit 6631380f2aad839d06eb557782b7a095bc3a68d8Author: cuixiaozhao
Date: Thu Aug 30 09:53:52 2018 +0800 在线commit 50f7baf3ee11befe9b6ff4fac4e54641d2cff595Author: cuixiaozhao
Date: Thu Aug 30 09:51:44 2018 +0800 del日韩commit 7dbf5e4a7c3f145eb2d66d84dfee7f5fe05b32e4Author: cuixiaozhao
Date: Thu Aug 30 09:47:43 2018 +0800 日韩commit 0729bca7d8056171f4ae404fd5dd9481e31fcf9aAuthor: cuixiaozhao
Date: Thu Aug 30 09:47:12 2018 +0800 startcommit 1edb258bc613bca3f81432e71753269337043537Author: cuixiaozhao
Date: Thu Aug 30 09:44:31 2018 +0800 delete rh...skipping...commit 50f7baf3ee11befe9b6ff4fac4e54641d2cff595Author: cuixiaozhao
Date: Thu Aug 30 09:51:44 2018 +0800 del日韩commit 7dbf5e4a7c3f145eb2d66d84dfee7f5fe05b32e4Author: cuixiaozhao
Date: Thu Aug 30 09:47:43 2018 +0800 日韩commit 0729bca7d8056171f4ae404fd5dd9481e31fcf9aAuthor: cuixiaozhao
Date: Thu Aug 30 09:47:12 2018 +0800 startcommit 1edb258bc613bca3f81432e71753269337043537Author: cuixiaozhao
Date: Thu Aug 30 09:44:31 2018 +0800 delete rhcommit b880b6aa979b742695a7b02e0e72509e6d5d5becAuthor: cuixiaozhao
Date: Wed Aug 29 23:30:22 2018 +0800 添加了欧美版本的内容commit 471ecb97981e650c3ae843273c4bfa679294d556Author: cuixiaozhao
Date: Wed Aug 29 23:27:23 2018 +0800 初次提交commit a07f721888e0027a4e60af09138806003dfe126cAuthor: cuixiaozhao
Date: Wed Aug 29 23:21:08 2018 +0800 创建第一个版本...skipping...commit 50f7baf3ee11befe9b6ff4fac4e54641d2cff595Author: cuixiaozhao
Date: Thu Aug 30 09:51:44 2018 +0800 del日韩commit 7dbf5e4a7c3f145eb2d66d84dfee7f5fe05b32e4Author: cuixiaozhao
Date: Thu Aug 30 09:47:43 2018 +0800 日韩commit 0729bca7d8056171f4ae404fd5dd9481e31fcf9aAuthor: cuixiaozhao
Date: Thu Aug 30 09:47:12 2018 +0800 startcommit 1edb258bc613bca3f81432e71753269337043537Author: cuixiaozhao
Date: Thu Aug 30 09:44:31 2018 +0800 delete rhcommit b880b6aa979b742695a7b02e0e72509e6d5d5becAuthor: cuixiaozhao
Date: Wed Aug 29 23:30:22 2018 +0800 添加了欧美版本的内容commit 471ecb97981e650c3ae843273c4bfa679294d556Author: cuixiaozhao
Date: Wed Aug 29 23:27:23 2018 +0800 初次提交commit a07f721888e0027a4e60af09138806003dfe126cAuthor: cuixiaozhao
Date: Wed Aug 29 23:21:08 2018 +0800 创建第一个版本...skipping...commit d6f4edf06369f731a5b0fff372735149ae103afd (HEAD -> master, rh, mater)Author: cuixiaozhao
Date: Thu Aug 30 10:04:01 2018 +0800 直播开发完成commit 85e0d8a8fb958d6dfc5ff786a4bce0cb6b24c628Author: cuixiaozhao
Date: Thu Aug 30 09:57:49 2018 +0800 继续开发commit 6631380f2aad839d06eb557782b7a095bc3a68d8Author: cuixiaozhao
Date: Thu Aug 30 09:53:52 2018 +0800 在线commit 50f7baf3ee11befe9b6ff4fac4e54641d2cff595Author: cuixiaozhao
Date: Thu Aug 30 09:51:44 2018 +0800 del日韩commit 7dbf5e4a7c3f145eb2d66d84dfee7f5fe05b32e4Author: cuixiaozhao
Date: Thu Aug 30 09:47:43 2018 +0800 日韩commit 0729bca7d8056171f4ae404fd5dd9481e31fcf9aAuthor: cuixiaozhao
Date: Thu Aug 30 09:47:12 2018 +0800 startcommit 1edb258bc613bca3f81432e71753269337043537Author: cuixiaozhao
Date: Thu Aug 30 09:44:31 2018 +0800 delete rh...skipping...commit 50f7baf3ee11befe9b6ff4fac4e54641d2cff595Author: cuixiaozhao
Date: Thu Aug 30 09:51:44 2018 +0800 del日韩commit 7dbf5e4a7c3f145eb2d66d84dfee7f5fe05b32e4Author: cuixiaozhao
Date: Thu Aug 30 09:47:43 2018 +0800 日韩commit 0729bca7d8056171f4ae404fd5dd9481e31fcf9aAuthor: cuixiaozhao
Date: Thu Aug 30 09:47:12 2018 +0800 startcommit 1edb258bc613bca3f81432e71753269337043537Author: cuixiaozhao
Date: Thu Aug 30 09:44:31 2018 +0800 delete rhcommit b880b6aa979b742695a7b02e0e72509e6d5d5becAuthor: cuixiaozhao
Date: Wed Aug 29 23:30:22 2018 +0800 添加了欧美版本的内容commit 471ecb97981e650c3ae843273c4bfa679294d556Author: cuixiaozhao
Date: Wed Aug 29 23:27:23 2018 +0800 初次提交commit a07f721888e0027a4e60af09138806003dfe126cAuthor: cuixiaozhao
Date: Wed Aug 29 23:21:08 2018 +0800 创建第一个版本commit 50f7baf3ee11befe9b6ff4fac4e54641d2cff595Author: cuixiaozhao
Date: Thu Aug 30 09:51:44 2018 +0800 del日韩commit 7dbf5e4a7c3f145eb2d66d84dfee7f5fe05b32e4Author: cuixiaozhao
Date: Thu Aug 30 09:47:43 2018 +0800 日韩commit 0729bca7d8056171f4ae404fd5dd9481e31fcf9aAuthor: cuixiaozhao
Date: Thu Aug 30 09:47:12 2018 +0800 startcommit 1edb258bc613bca3f81432e71753269337043537Author: cuixiaozhao
Date: Thu Aug 30 09:44:31 2018 +0800 delete rhcommit b880b6aa979b742695a7b02e0e72509e6d5d5becAuthor: cuixiaozhao
Date: Wed Aug 29 23:30:22 2018 +0800 添加了欧美版本的内容commit 471ecb97981e650c3ae843273c4bfa679294d556Author: cuixiaozhao
Date: Wed Aug 29 23:27:23 2018 +0800 初次提交commit a07f721888e0027a4e60af09138806003dfe126cAuthor: cuixiaozhao
Date: Wed Aug 29 23:21:08 2018 +0800 创建第一个版本commit 50f7baf3ee11befe9b6ff4fac4e54641d2cff595Author: cuixiaozhao
Date: Thu Aug 30 09:51:44 2018 +0800 del日韩commit 7dbf5e4a7c3f145eb2d66d84dfee7f5fe05b32e4Author: cuixiaozhao
Date: Thu Aug 30 09:47:43 2018 +0800 日韩commit 0729bca7d8056171f4ae404fd5dd9481e31fcf9aAuthor: cuixiaozhao
Date: Thu Aug 30 09:47:12 2018 +0800 startcommit 1edb258bc613bca3f81432e71753269337043537Author: cuixiaozhao
Date: Thu Aug 30 09:44:31 2018 +0800 delete rhcommit b880b6aa979b742695a7b02e0e72509e6d5d5becAuthor: cuixiaozhao
Date: Wed Aug 29 23:30:22 2018 +0800 添加了欧美版本的内容commit 471ecb97981e650c3ae843273c4bfa679294d556Author: cuixiaozhao
Date: Wed Aug 29 23:27:23 2018 +0800 初次提交commit a07f721888e0027a4e60af09138806003dfe126cAuthor: cuixiaozhao
Date: Wed Aug 29 23:21:08 2018 +0800 创建第一个版本(END)TQTL911@DESKTOP-U8JDGPP MINGW64 ~/PycharmProjects/dbhot (master)TQTL911@DESKTOP-U8JDGPP MINGW64 ~/PycharmProjects/dbhot (master)$TQTL911@DESKTOP-U8JDGPP MINGW64 ~/PycharmProjects/dbhot (master)$TQTL911@DESKTOP-U8JDGPP MINGW64 ~/PycharmProjects/dbhot (master)$ git logcommit d6f4edf06369f731a5b0fff372735149ae103afd (HEAD -> master, rh, mater)Author: cuixiaozhao
Date: Thu Aug 30 10:04:01 2018 +0800 直播开发完成commit 85e0d8a8fb958d6dfc5ff786a4bce0cb6b24c628Author: cuixiaozhao
Date: Thu Aug 30 09:57:49 2018 +0800 继续开发commit 6631380f2aad839d06eb557782b7a095bc3a68d8Author: cuixiaozhao
Date: Thu Aug 30 09:53:52 2018 +0800 在线commit 50f7baf3ee11befe9b6ff4fac4e54641d2cff595Author: cuixiaozhao
Date: Thu Aug 30 09:51:44 2018 +0800 del日韩commit 7dbf5e4a7c3f145eb2d66d84dfee7f5fe05b32e4Author: cuixiaozhao
Date: Thu Aug 30 09:47:43 2018 +0800 日韩commit 0729bca7d8056171f4ae404fd5dd9481e31fcf9aAuthor: cuixiaozhao
Date: Thu Aug 30 09:47:12 2018 +0800 startcommit 1edb258bc613bca3f81432e71753269337043537Author: cuixiaozhao
Date: Thu Aug 30 09:44:31 2018 +0800 delete rhcommit d6f4edf06369f731a5b0fff372735149ae103afd (HEAD -> master, rh, mater)Author: cuixiaozhao
Date: Thu Aug 30 10:04:01 2018 +0800 直播开发完成commit 85e0d8a8fb958d6dfc5ff786a4bce0cb6b24c628Author: cuixiaozhao
Date: Thu Aug 30 09:57:49 2018 +0800 继续开发commit 6631380f2aad839d06eb557782b7a095bc3a68d8Author: cuixiaozhao
Date: Thu Aug 30 09:53:52 2018 +0800 在线commit 50f7baf3ee11befe9b6ff4fac4e54641d2cff595Author: cuixiaozhao
Date: Thu Aug 30 09:51:44 2018 +0800 del日韩commit 7dbf5e4a7c3f145eb2d66d84dfee7f5fe05b32e4Author: cuixiaozhao
Date: Thu Aug 30 09:47:43 2018 +0800 日韩commit 0729bca7d8056171f4ae404fd5dd9481e31fcf9aAuthor: cuixiaozhao
Date: Thu Aug 30 09:47:12 2018 +0800 startcommit 1edb258bc613bca3f81432e71753269337043537Author: cuixiaozhao
Date: Thu Aug 30 09:44:31 2018 +0800 delete rh: 1 [sig] bash 10880! sigpacket::process: Suppressing signal 18 to win32 process (pid 12996)commit b880b6aa979b742695a7b02e0e72509e6d5d5becAuthor: cuixiaozhao
Date: Wed Aug 29 23:30:22 2018 +0800 添加了欧美版本的内容:TQTL911@DESKTOP-U8JDGPP MINGW64 ~/PycharmProjects/dbhot (master)git logcommit d6f4edf06369f731a5b0fff372735149ae103afd (HEAD -> master, rh, mater)Author: cuixiaozhao
Date: Thu Aug 30 10:04:01 2018 +0800 直播开发完成commit 85e0d8a8fb958d6dfc5ff786a4bce0cb6b24c628Author: cuixiaozhao
Date: Thu Aug 30 09:57:49 2018 +0800 继续开发commit 6631380f2aad839d06eb557782b7a095bc3a68d8Author: cuixiaozhao
Date: Thu Aug 30 09:53:52 2018 +0800 在线commit 50f7baf3ee11befe9b6ff4fac4e54641d2cff595Author: cuixiaozhao
Date: Thu Aug 30 09:51:44 2018 +0800 del日韩commit 7dbf5e4a7c3f145eb2d66d84dfee7f5fe05b32e4Author: cuixiaozhao
Date: Thu Aug 30 09:47:43 2018 +0800 日韩commit 0729bca7d8056171f4ae404fd5dd9481e31fcf9aAuthor: cuixiaozhao
Date: Thu Aug 30 09:47:12 2018 +0800 startcommit 1edb258bc613bca3f81432e71753269337043537Author: cuixiaozhao
Date: Thu Aug 30 09:44:31 2018 +0800 delete rh...skipping...commit 50f7baf3ee11befe9b6ff4fac4e54641d2cff595Author: cuixiaozhao
Date: Thu Aug 30 09:51:44 2018 +0800 del日韩commit 7dbf5e4a7c3f145eb2d66d84dfee7f5fe05b32e4Author: cuixiaozhao
Date: Thu Aug 30 09:47:43 2018 +0800 日韩commit 0729bca7d8056171f4ae404fd5dd9481e31fcf9aAuthor: cuixiaozhao
Date: Thu Aug 30 09:47:12 2018 +0800 startcommit 1edb258bc613bca3f81432e71753269337043537Author: cuixiaozhao
Date: Thu Aug 30 09:44:31 2018 +0800 delete rhcommit b880b6aa979b742695a7b02e0e72509e6d5d5becAuthor: cuixiaozhao
Date: Wed Aug 29 23:30:22 2018 +0800 添加了欧美版本的内容commit 471ecb97981e650c3ae843273c4bfa679294d556Author: cuixiaozhao
Date: Wed Aug 29 23:27:23 2018 +0800 初次提交commit a07f721888e0027a4e60af09138806003dfe126cAuthor: cuixiaozhao
Date: Wed Aug 29 23:21:08 2018 +0800 创建第一个版本(END) 1 [sig] bash 10476! sigpacket::process: Suppressing signal 18 to win32 process (pid 6656)commit 50f7baf3ee11befe9b6ff4fac4e54641d2cff595Author: cuixiaozhao
Date: Thu Aug 30 09:51:44 2018 +0800 del日韩commit 7dbf5e4a7c3f145eb2d66d84dfee7f5fe05b32e4Author: cuixiaozhao
Date: Thu Aug 30 09:47:43 2018 +0800 日韩commit 0729bca7d8056171f4ae404fd5dd9481e31fcf9aAuthor: cuixiaozhao
Date: Thu Aug 30 09:47:12 2018 +0800 startcommit 1edb258bc613bca3f81432e71753269337043537Author: cuixiaozhao
Date: Thu Aug 30 09:44:31 2018 +0800 delete rhcommit b880b6aa979b742695a7b02e0e72509e6d5d5becAuthor: cuixiaozhao
Date: Wed Aug 29 23:30:22 2018 +0800 添加了欧美版本的内容commit 471ecb97981e650c3ae843273c4bfa679294d556Author: cuixiaozhao
Date: Wed Aug 29 23:27:23 2018 +0800 初次提交commit a07f721888e0027a4e60af09138806003dfe126cAuthor: cuixiaozhao
Date: Wed Aug 29 23:21:08 2018 +0800 创建第一个版本...skipping...commit d6f4edf06369f731a5b0fff372735149ae103afd (HEAD -> master, rh, mater)Author: cuixiaozhao
Date: Thu Aug 30 10:04:01 2018 +0800 直播开发完成commit 85e0d8a8fb958d6dfc5ff786a4bce0cb6b24c628Author: cuixiaozhao
Date: Thu Aug 30 09:57:49 2018 +0800 继续开发commit 6631380f2aad839d06eb557782b7a095bc3a68d8Author: cuixiaozhao
Date: Thu Aug 30 09:53:52 2018 +0800 在线commit 50f7baf3ee11befe9b6ff4fac4e54641d2cff595Author: cuixiaozhao
Date: Thu Aug 30 09:51:44 2018 +0800 del日韩commit 7dbf5e4a7c3f145eb2d66d84dfee7f5fe05b32e4Author: cuixiaozhao
Date: Thu Aug 30 09:47:43 2018 +0800 日韩commit 0729bca7d8056171f4ae404fd5dd9481e31fcf9aAuthor: cuixiaozhao
Date: Thu Aug 30 09:47:12 2018 +0800 startcommit 1edb258bc613bca3f81432e71753269337043537Author: cuixiaozhao
Date: Thu Aug 30 09:44:31 2018 +0800 delete rh...skipping...commit 50f7baf3ee11befe9b6ff4fac4e54641d2cff595Author: cuixiaozhao
Date: Thu Aug 30 09:51:44 2018 +0800 del日韩commit 7dbf5e4a7c3f145eb2d66d84dfee7f5fe05b32e4Author: cuixiaozhao
Date: Thu Aug 30 09:47:43 2018 +0800 日韩commit 0729bca7d8056171f4ae404fd5dd9481e31fcf9aAuthor: cuixiaozhao
Date: Thu Aug 30 09:47:12 2018 +0800 startcommit 1edb258bc613bca3f81432e71753269337043537Author: cuixiaozhao
Date: Thu Aug 30 09:44:31 2018 +0800 delete rhcommit b880b6aa979b742695a7b02e0e72509e6d5d5becAuthor: cuixiaozhao
Date: Wed Aug 29 23:30:22 2018 +0800 添加了欧美版本的内容commit 471ecb97981e650c3ae843273c4bfa679294d556Author: cuixiaozhao
Date: Wed Aug 29 23:27:23 2018 +0800 初次提交commit a07f721888e0027a4e60af09138806003dfe126cAuthor: cuixiaozhao
Date: Wed Aug 29 23:21:08 2018 +0800 创建第一个版本...skipping...commit d6f4edf06369f731a5b0fff372735149ae103afd (HEAD -> master, rh, mater)Author: cuixiaozhao
Date: Thu Aug 30 10:04:01 2018 +0800 直播开发完成commit 85e0d8a8fb958d6dfc5ff786a4bce0cb6b24c628Author: cuixiaozhao
Date: Thu Aug 30 09:57:49 2018 +0800 继续开发commit 6631380f2aad839d06eb557782b7a095bc3a68d8Author: cuixiaozhao
Date: Thu Aug 30 09:53:52 2018 +0800 在线commit 50f7baf3ee11befe9b6ff4fac4e54641d2cff595Author: cuixiaozhao
Date: Thu Aug 30 09:51:44 2018 +0800 del日韩commit 7dbf5e4a7c3f145eb2d66d84dfee7f5fe05b32e4Author: cuixiaozhao
Date: Thu Aug 30 09:47:43 2018 +0800 日韩commit 0729bca7d8056171f4ae404fd5dd9481e31fcf9aAuthor: cuixiaozhao
Date: Thu Aug 30 09:47:12 2018 +0800 startcommit 1edb258bc613bca3f81432e71753269337043537Author: cuixiaozhao
Date: Thu Aug 30 09:44:31 2018 +0800 delete rh...skipping... 在线commit 50f7baf3ee11befe9b6ff4fac4e54641d2cff595Author: cuixiaozhao
Date: Thu Aug 30 09:51:44 2018 +0800 del日韩commit 7dbf5e4a7c3f145eb2d66d84dfee7f5fe05b32e4Author: cuixiaozhao
Date: Thu Aug 30 09:47:43 2018 +0800 日韩commit 0729bca7d8056171f4ae404fd5dd9481e31fcf9aAuthor: cuixiaozhao
Date: Thu Aug 30 09:47:12 2018 +0800 startcommit 1edb258bc613bca3f81432e71753269337043537Author: cuixiaozhao
Date: Thu Aug 30 09:44:31 2018 +0800 delete rhcommit b880b6aa979b742695a7b02e0e72509e6d5d5becAuthor: cuixiaozhao
Date: Wed Aug 29 23:30:22 2018 +0800 添加了欧美版本的内容commit 471ecb97981e650c3ae843273c4bfa679294d556Author: cuixiaozhao
Date: Wed Aug 29 23:27:23 2018 +0800 初次提交commit a07f721888e0027a4e60af09138806003dfe126cAuthor: cuixiaozhao
Date: Wed Aug 29 23:21:08 2018 +0800 创建第一个版本 ESCTQTL911@DESKTOP-U8JDGPP MINGW64 ~/PycharmProjects/dbhot (master)OAash: OA: command not foundTQTL911@DESKTOP-U8JDGPP MINGW64 ~/PycharmProjects/dbhot (master)$TQTL911@DESKTOP-U8JDGPP MINGW64 ~/PycharmProjects/dbhot (master)$TQTL911@DESKTOP-U8JDGPP MINGW64 ~/PycharmProjects/dbhot (master)$ git logcommit d6f4edf06369f731a5b0fff372735149ae103afd (HEAD -> master, rh, mater)Author: cuixiaozhao
Date: Thu Aug 30 10:04:01 2018 +0800 直播开发完成commit 85e0d8a8fb958d6dfc5ff786a4bce0cb6b24c628Author: cuixiaozhao
Date: Thu Aug 30 09:57:49 2018 +0800 继续开发commit 6631380f2aad839d06eb557782b7a095bc3a68d8Author: cuixiaozhao
Date: Thu Aug 30 09:53:52 2018 +0800 在线commit 50f7baf3ee11befe9b6ff4fac4e54641d2cff595Author: cuixiaozhao
Date: Thu Aug 30 09:51:44 2018 +0800 del日韩commit 7dbf5e4a7c3f145eb2d66d84dfee7f5fe05b32e4Author: cuixiaozhao
Date: Thu Aug 30 09:47:43 2018 +0800 日韩commit 0729bca7d8056171f4ae404fd5dd9481e31fcf9aAuthor: cuixiaozhao
Date: Thu Aug 30 09:47:12 2018 +0800 startcommit 1edb258bc613bca3f81432e71753269337043537Author: cuixiaozhao
Date: Thu Aug 30 09:44:31 2018 +0800 delete rhcommit b880b6aa979b742695a7b02e0e72509e6d5d5becAuthor: cuixiaozhao
Date: Wed Aug 29 23:30:22 2018 +0800 添加了欧美版本的内容commit 471ecb97981e650c3ae843273c4bfa679294d556Author: cuixiaozhao
Date: Wed Aug 29 23:27:23 2018 +0800 初次提交commit a07f721888e0027a4e60af09138806003dfe126cAuthor: cuixiaozhao
Date: Wed Aug 29 23:21:08 2018 +0800 创建第一个版本...skipping...commit d6f4edf06369f731a5b0fff372735149ae103afd (HEAD -> master, rh, mater)Author: cuixiaozhao
Date: Thu Aug 30 10:04:01 2018 +0800 直播开发完成commit 85e0d8a8fb958d6dfc5ff786a4bce0cb6b24c628Author: cuixiaozhao
Date: Thu Aug 30 09:57:49 2018 +0800 继续开发commit 6631380f2aad839d06eb557782b7a095bc3a68d8Author: cuixiaozhao
Date: Thu Aug 30 09:53:52 2018 +0800 在线commit 50f7baf3ee11befe9b6ff4fac4e54641d2cff595Author: cuixiaozhao
Date: Thu Aug 30 09:51:44 2018 +0800 del日韩commit 7dbf5e4a7c3f145eb2d66d84dfee7f5fe05b32e4Author: cuixiaozhao
Date: Thu Aug 30 09:47:43 2018 +0800 日韩commit 0729bca7d8056171f4ae404fd5dd9481e31fcf9aAuthor: cuixiaozhao
Date: Thu Aug 30 09:47:12 2018 +0800 startcommit 1edb258bc613bca3f81432e71753269337043537Author: cuixiaozhao
Date: Thu Aug 30 09:44:31 2018 +0800 delete rh...skipping...commit 50f7baf3ee11befe9b6ff4fac4e54641d2cff595Author: cuixiaozhao
Date: Thu Aug 30 09:51:44 2018 +0800 del日韩commit 7dbf5e4a7c3f145eb2d66d84dfee7f5fe05b32e4Author: cuixiaozhao
Date: Thu Aug 30 09:47:43 2018 +0800 日韩commit 0729bca7d8056171f4ae404fd5dd9481e31fcf9aAuthor: cuixiaozhao
Date: Thu Aug 30 09:47:12 2018 +0800 startcommit 1edb258bc613bca3f81432e71753269337043537Author: cuixiaozhao
Date: Thu Aug 30 09:44:31 2018 +0800 delete rhcommit b880b6aa979b742695a7b02e0e72509e6d5d5becAuthor: cuixiaozhao
Date: Wed Aug 29 23:30:22 2018 +0800 添加了欧美版本的内容commit 471ecb97981e650c3ae843273c4bfa679294d556Author: cuixiaozhao
Date: Wed Aug 29 23:27:23 2018 +0800 初次提交commit a07f721888e0027a4e60af09138806003dfe126cAuthor: cuixiaozhao
Date: Wed Aug 29 23:21:08 2018 +0800 创建第一个版本...skipping...commit 50f7baf3ee11befe9b6ff4fac4e54641d2cff595Author: cuixiaozhao
Date: Thu Aug 30 09:51:44 2018 +0800 del日韩commit 7dbf5e4a7c3f145eb2d66d84dfee7f5fe05b32e4Author: cuixiaozhao
Date: Thu Aug 30 09:47:43 2018 +0800 日韩commit 0729bca7d8056171f4ae404fd5dd9481e31fcf9aAuthor: cuixiaozhao
Date: Thu Aug 30 09:47:12 2018 +0800 startcommit 1edb258bc613bca3f81432e71753269337043537Author: cuixiaozhao
Date: Thu Aug 30 09:44:31 2018 +0800 delete rhcommit b880b6aa979b742695a7b02e0e72509e6d5d5becAuthor: cuixiaozhao
Date: Wed Aug 29 23:30:22 2018 +0800 添加了欧美版本的内容commit 471ecb97981e650c3ae843273c4bfa679294d556Author: cuixiaozhao
Date: Wed Aug 29 23:27:23 2018 +0800 初次提交commit a07f721888e0027a4e60af09138806003dfe126cAuthor: cuixiaozhao
Date: Wed Aug 29 23:21:08 2018 +0800 创建第一个版本...skipping...commit d6f4edf06369f731a5b0fff372735149ae103afd (HEAD -> master, rh, mater)Author: cuixiaozhao
Date: Thu Aug 30 10:04:01 2018 +0800 直播开发完成commit 85e0d8a8fb958d6dfc5ff786a4bce0cb6b24c628Author: cuixiaozhao
Date: Thu Aug 30 09:57:49 2018 +0800 继续开发commit 6631380f2aad839d06eb557782b7a095bc3a68d8Author: cuixiaozhao
Date: Thu Aug 30 09:53:52 2018 +0800 在线commit 50f7baf3ee11befe9b6ff4fac4e54641d2cff595Author: cuixiaozhao
Date: Thu Aug 30 09:51:44 2018 +0800 del日韩commit 7dbf5e4a7c3f145eb2d66d84dfee7f5fe05b32e4Author: cuixiaozhao
Date: Thu Aug 30 09:47:43 2018 +0800 日韩commit 0729bca7d8056171f4ae404fd5dd9481e31fcf9aAuthor: cuixiaozhao
Date: Thu Aug 30 09:47:12 2018 +0800 startcommit 1edb258bc613bca3f81432e71753269337043537Author: cuixiaozhao
Date: Thu Aug 30 09:44:31 2018 +0800 delete rh:TQTL911@DESKTOP-U8JDGPP MINGW64 ~/PycharmProjects/dbhot (master)TQTL911@DESKTOP-U8JDGPP MINGW64 ~/PycharmProjects/dbhot (master)$TQTL911@DESKTOP-U8JDGPP MINGW64 ~/PycharmProjects/dbhot (master)$TQTL911@DESKTOP-U8JDGPP MINGW64 ~/PycharmProjects/dbhot (master)$TQTL911@DESKTOP-U8JDGPP MINGW64 ~/PycharmProjects/dbhot (master)$TQTL911@DESKTOP-U8JDGPP MINGW64 ~/PycharmProjects/dbhot (master)$TQTL911@DESKTOP-U8JDGPP MINGW64 ~/PycharmProjects/dbhot (master)$ Git branch -d rhDeleted branch rh (was d6f4edf).TQTL911@DESKTOP-U8JDGPP MINGW64 ~/PycharmProjects/dbhot (master)$ git branch dev* master materTQTL911@DESKTOP-U8JDGPP MINGW64 ~/PycharmProjects/dbhot (master)$ git checkout deverror: Your local changes to the following files would be overwritten by checkout: templates/index.htmlPlease commit your changes or stash them before you switch branches.AbortingTQTL911@DESKTOP-U8JDGPP MINGW64 ~/PycharmProjects/dbhot (master)$ git checkout deverror: Your local changes to the following files would be overwritten by checkout: templates/index.htmlPlease commit your changes or stash them before you switch branches.AbortingTQTL911@DESKTOP-U8JDGPP MINGW64 ~/PycharmProjects/dbhot (master)$ git statusOn branch masterChanges to be committed: (use "git reset HEAD
..." to unstage) modified: templates/index.htmlTQTL911@DESKTOP-U8JDGPP MINGW64 ~/PycharmProjects/dbhot (master)$ git commit -m "master定版!"[master 9df49bf] master定版! 1 file changed, 1 insertion(+)TQTL911@DESKTOP-U8JDGPP MINGW64 ~/PycharmProjects/dbhot (master)$ Git statusOn branch masternothing to commit, working tree cleanTQTL911@DESKTOP-U8JDGPP MINGW64 ~/PycharmProjects/dbhot (master)$ git checkout devSwitched to branch 'dev'TQTL911@DESKTOP-U8JDGPP MINGW64 ~/PycharmProjects/dbhot (dev)$ git statusOn branch devnothing to commit, working tree cleanTQTL911@DESKTOP-U8JDGPP MINGW64 ~/PycharmProjects/dbhot (dev)$ git statusOn branch devChanges not staged for commit: (use "git add
..." to update what will be committed) (use "git checkout --
..." to discard changes in working directory) modified: templates/index.htmlno changes added to commit (use "git add" and/or "git commit -a")TQTL911@DESKTOP-U8JDGPP MINGW64 ~/PycharmProjects/dbhot (dev)$ git add .TQTL911@DESKTOP-U8JDGPP MINGW64 ~/PycharmProjects/dbhot (dev)$ git commit -m "小视频功能开发完毕!"[dev 7c19e8a] 小视频功能开发完毕! 1 file changed, 1 insertion(+), 1 deletion(-)TQTL911@DESKTOP-U8JDGPP MINGW64 ~/PycharmProjects/dbhot (dev)$ git statusOn branch devnothing to commit, working tree cleanTQTL911@DESKTOP-U8JDGPP MINGW64 ~/PycharmProjects/dbhot (dev)$ git checkout masterSwitched to branch 'master'TQTL911@DESKTOP-U8JDGPP MINGW64 ~/PycharmProjects/dbhot (master)$ git merge devAuto-merging templates/index.htmlMerge made by the 'recursive' strategy. templates/index.html | 1 + 1 file changed, 1 insertion(+)TQTL911@DESKTOP-U8JDGPP MINGW64 ~/PycharmProjects/dbhot (master)$ git statusOn branch masterChanges not staged for commit: (use "git add
..." to update what will be committed) (use "git checkout --
..." to discard changes in working directory) modified: templates/index.htmlno changes added to commit (use "git add" and/or "git commit -a")TQTL911@DESKTOP-U8JDGPP MINGW64 ~/PycharmProjects/dbhot (master)$ git add .TQTL911@DESKTOP-U8JDGPP MINGW64 ~/PycharmProjects/dbhot (master)$ git commit -m "清空空格"[master 84595ae] 清空空格 1 file changed, 1 deletion(-)TQTL911@DESKTOP-U8JDGPP MINGW64 ~/PycharmProjects/dbhot (master)$ git statusOn branch masternothing to commit, working tree cleanTQTL911@DESKTOP-U8JDGPP MINGW64 ~/PycharmProjects/dbhot (master)$ git logcommit 84595aeaf6b38069829ec1e5f4ceb28081d3d56d (HEAD -> master)Author: cuixiaozhao
Date: Thu Aug 30 10:22:21 2018 +0800 清空空格commit 3bf2561d1ca4b99741b9891fd47262eeb9ec62b3Merge: 9df49bf 7c19e8aAuthor: cuixiaozhao
Date: Thu Aug 30 10:20:23 2018 +0800 Merge branch 'dev'commit 7c19e8ab6fd837d97cc8ed5d834c7c7cf927b224 (dev)Author: cuixiaozhao
Date: Thu Aug 30 10:20:01 2018 +0800 小视频功能开发完毕!commit 9df49bf7fc4d0caf0ee0b75b682d1b65ed0ce938Author: cuixiaozhao
Date: Thu Aug 30 10:18:52 2018 +0800 master定版!commit 1a1d14fc9f72c5d5f1f4a7807eb4169ca10d1488Author: cuixiaozhao
Date: Thu Aug 30 10:08:42 2018 +0800 小视频开发了1/2commit d6f4edf06369f731a5b0fff372735149ae103afd (mater)Author: cuixiaozhao
Date: Thu Aug 30 10:04:01 2018 +0800 直播开发完成commit 85e0d8a8fb958d6dfc5ff786a4bce0cb6b24c628Author: cuixiaozhao
Date: Thu Aug 30 09:57:49 2018 +0800...skipping...commit 50f7baf3ee11befe9b6ff4fac4e54641d2cff595Author: cuixiaozhao
Date: Thu Aug 30 09:51:44 2018 +0800 del日韩commit 7dbf5e4a7c3f145eb2d66d84dfee7f5fe05b32e4Author: cuixiaozhao
Date: Thu Aug 30 09:47:43 2018 +0800 日韩commit 0729bca7d8056171f4ae404fd5dd9481e31fcf9aAuthor: cuixiaozhao
Date: Thu Aug 30 09:47:12 2018 +0800 startcommit 1edb258bc613bca3f81432e71753269337043537Author: cuixiaozhao
Date: Thu Aug 30 09:44:31 2018 +0800 delete rhcommit b880b6aa979b742695a7b02e0e72509e6d5d5becAuthor: cuixiaozhao
Date: Wed Aug 29 23:30:22 2018 +0800 添加了欧美版本的内容commit 471ecb97981e650c3ae843273c4bfa679294d556Author: cuixiaozhao
Date: Wed Aug 29 23:27:23 2018 +0800 初次提交commit a07f721888e0027a4e60af09138806003dfe126cAuthor: cuixiaozhao
Date: Wed Aug 29 23:21:08 2018 +0800 创建第一个版本...skipping...commit 50f7baf3ee11befe9b6ff4fac4e54641d2cff595Author: cuixiaozhao
Date: Thu Aug 30 09:51:44 2018 +0800 del日韩commit 7dbf5e4a7c3f145eb2d66d84dfee7f5fe05b32e4Author: cuixiaozhao
Date: Thu Aug 30 09:47:43 2018 +0800 日韩commit 0729bca7d8056171f4ae404fd5dd9481e31fcf9aAuthor: cuixiaozhao
Date: Thu Aug 30 09:47:12 2018 +0800 startcommit 1edb258bc613bca3f81432e71753269337043537Author: cuixiaozhao
Date: Thu Aug 30 09:44:31 2018 +0800 delete rhcommit b880b6aa979b742695a7b02e0e72509e6d5d5becAuthor: cuixiaozhao
Date: Wed Aug 29 23:30:22 2018 +0800 添加了欧美版本的内容commit 471ecb97981e650c3ae843273c4bfa679294d556Author: cuixiaozhao
Date: Wed Aug 29 23:27:23 2018 +0800 初次提交commit a07f721888e0027a4e60af09138806003dfe126cAuthor: cuixiaozhao
Date: Wed Aug 29 23:21:08 2018 +0800 创建第一个版本...skipping...commit 50f7baf3ee11befe9b6ff4fac4e54641d2cff595Author: cuixiaozhao
Date: Thu Aug 30 09:51:44 2018 +0800 del日韩commit 7dbf5e4a7c3f145eb2d66d84dfee7f5fe05b32e4Author: cuixiaozhao
Date: Thu Aug 30 09:47:43 2018 +0800 日韩commit 0729bca7d8056171f4ae404fd5dd9481e31fcf9aAuthor: cuixiaozhao
Date: Thu Aug 30 09:47:12 2018 +0800 startcommit 1edb258bc613bca3f81432e71753269337043537Author: cuixiaozhao
Date: Thu Aug 30 09:44:31 2018 +0800 delete rhcommit b880b6aa979b742695a7b02e0e72509e6d5d5becAuthor: cuixiaozhao
Date: Wed Aug 29 23:30:22 2018 +0800 添加了欧美版本的内容commit 471ecb97981e650c3ae843273c4bfa679294d556Author: cuixiaozhao
Date: Wed Aug 29 23:27:23 2018 +0800 初次提交commit a07f721888e0027a4e60af09138806003dfe126cAuthor: cuixiaozhao
Date: Wed Aug 29 23:21:08 2018 +0800 创建第一个版本...skipping...commit 50f7baf3ee11befe9b6ff4fac4e54641d2cff595Author: cuixiaozhao
Date: Thu Aug 30 09:51:44 2018 +0800 del日韩commit 7dbf5e4a7c3f145eb2d66d84dfee7f5fe05b32e4Author: cuixiaozhao
Date: Thu Aug 30 09:47:43 2018 +0800 日韩commit 0729bca7d8056171f4ae404fd5dd9481e31fcf9aAuthor: cuixiaozhao
Date: Thu Aug 30 09:47:12 2018 +0800 startcommit 1edb258bc613bca3f81432e71753269337043537Author: cuixiaozhao
Date: Thu Aug 30 09:44:31 2018 +0800 delete rhcommit b880b6aa979b742695a7b02e0e72509e6d5d5becAuthor: cuixiaozhao
Date: Wed Aug 29 23:30:22 2018 +0800 添加了欧美版本的内容commit 471ecb97981e650c3ae843273c4bfa679294d556Author: cuixiaozhao
Date: Wed Aug 29 23:27:23 2018 +0800 初次提交commit a07f721888e0027a4e60af09138806003dfe126cAuthor: cuixiaozhao
Date: Wed Aug 29 23:21:08 2018 +0800 创建第一个版本(END)TQTL911@DESKTOP-U8JDGPP MINGW64 ~/PycharmProjects/dbhot (master)tbash: gt: command not foundTQTL911@DESKTOP-U8JDGPP MINGW64 ~/PycharmProjects/dbhot (master)$TQTL911@DESKTOP-U8JDGPP MINGW64 ~/PycharmProjects/dbhot (master)$TQTL911@DESKTOP-U8JDGPP MINGW64 ~/PycharmProjects/dbhot (master)$ git branch bugTQTL911@DESKTOP-U8JDGPP MINGW64 ~/PycharmProjects/dbhot (master)$ git checkout bugSwitched to branch 'bug'TQTL911@DESKTOP-U8JDGPP MINGW64 ~/PycharmProjects/dbhot (bug)$ git add .TQTL911@DESKTOP-U8JDGPP MINGW64 ~/PycharmProjects/dbhot (bug)$ git commit -m "修复了大视频的bug"[bug 1c3ab5f] 修复了大视频的bug 1 file changed, 1 insertion(+), 1 deletion(-)TQTL911@DESKTOP-U8JDGPP MINGW64 ~/PycharmProjects/dbhot (bug)$ Git statusOn branch bugnothing to commit, working tree cleanTQTL911@DESKTOP-U8JDGPP MINGW64 ~/PycharmProjects/dbhot (bug)$ git checkout masterSwitched to branch 'master'TQTL911@DESKTOP-U8JDGPP MINGW64 ~/PycharmProjects/dbhot (master)$ git merge bugUpdating 84595ae..1c3ab5fFast-forward templates/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)TQTL911@DESKTOP-U8JDGPP MINGW64 ~/PycharmProjects/dbhot (master)$ git checkout devSwitched to branch 'dev'TQTL911@DESKTOP-U8JDGPP MINGW64 ~/PycharmProjects/dbhot (dev)$ git add .TQTL911@DESKTOP-U8JDGPP MINGW64 ~/PycharmProjects/dbhot (dev)$ git commit -m "增添了aaaaa"[dev 2c89b41] 增添了aaaaa 1 file changed, 1 insertion(+), 1 deletion(-)TQTL911@DESKTOP-U8JDGPP MINGW64 ~/PycharmProjects/dbhot (dev)$ git statusOn branch devnothing to commit, working tree cleanTQTL911@DESKTOP-U8JDGPP MINGW64 ~/PycharmProjects/dbhot (dev)$ Git checkout masterSwitched to branch 'master'TQTL911@DESKTOP-U8JDGPP MINGW64 ~/PycharmProjects/dbhot (master)$ git merge devAuto-merging templates/index.htmlCONFLICT (content): Merge conflict in templates/index.htmlAutomatic merge failed; fix conflicts and then commit the result.TQTL911@DESKTOP-U8JDGPP MINGW64 ~/PycharmProjects/dbhot (master|MERGING)$ git add .TQTL911@DESKTOP-U8JDGPP MINGW64 ~/PycharmProjects/dbhot (master|MERGING)$ git commit -m "dev和master合并"[master 9cd5d05] dev和master合并TQTL911@DESKTOP-U8JDGPP MINGW64 ~/PycharmProjects/dbhot (master)$ git statusOn branch masternothing to commit, working tree cleanTQTL911@DESKTOP-U8JDGPP MINGW64 ~/PycharmProjects/dbhot (master)$
操作日志

3、Git版本控制之github代码托管;

1、全球最大的程序员交友网站——Github;

2、同类网站:Bitbucket、码云、Gitlab;

推荐使用Bitbucket;

码云;

3、Github创建仓库;

4、将项目推向至Github;

134  git remote add origin https://github.com/tqtl911/dbhot.git 135  git push origin master

5、git配置文件详情;

config;

[core]    repositoryformatversion = 0    filemode = false    bare = false    logallrefupdates = true    symlinks = false    ignorecase = true[remote "origin"]    url = https://github.com/tqtl911/dbhot.git    fetch = +refs/heads/*:refs/remotes/origin/*

 6、Git的命令总结;

  • git remote add origin https://github.com/tqtl911/dbhot.git
  • git clone https://github.com/tqtl911/dbhot.git
  • git pull origin dev(等价于git fetch origin dev;git merge origin/dev)
  • git pull origin master(等价于git fetch origin master;git merge origin/master)

7、Git版本控制之rebase的作用;

1、git push origin dev 等价于git fetch origin dev  git merge origin/dev,;

2、如果不想出现下体的分支,可以使用git rebase origin/dev来代替以上的git merge origin/dev

 8、Redis初识;

1、Redis是一个软件,帮助开发者对一台机器的内存进行操作;(MySQL是一个软件,帮助开发者对一台机器的硬盘进行操作);

2、Redis中的关键字——缓存,即优先去Redis中获取,如果没有就是数据库;

3、Redis位于Linux下的安装;yum install -y redis

4、Redis相关配置的文件——redis.conf的修改项目——port、bind、requirepass;

5、Python连接Redis——第三方模块Redis;

#!/usr/bin/env python3# -*- coding:utf-8 -*-# __Author__:TQTL911# Version:python3.6.6# Time:2018/8/30 20:35import redis## 创建连接;# conn = redis.Redis(host='47.95.121.154', port=6379, password='Ab123456.')# conn.set('x1', 'wanghuaqiang', ex=5)# val = conn.get('x1')# print(val)# 推荐使用Redis连接池;pool = redis.ConnectionPool(host='47.05.121.154', port=6379, password='Ab123456.', max_connections=1000)conn = redis.Redis(connection_pool=pool)conn.set('foo', 'Bar')# 问题来了;# 引入连接池;from redis_pool import POOLwhile True:    key = input('请输入key:')    value = input('请输入value:')    # 到连接池中去获取链接;    conn = redis.Redis(connection_pool=POOL)    # 设置值;    conn.set(key, value)

redis_pool.py;

#!/usr/bin/env python3# -*- coding:utf-8 -*-# __Author__:TQTL911# Version:python3.6.6# Time:2018/8/30 20:59# 创建连接池(单例模式);import redisPOOL = redis.ConnectionPool(host='47.05.121.154', port=6379, password='Ab123456.', max_connections=1000)

9、当日内容总结;

  • git版本控制工具初识;
  • git + github;
  • Redis缓存数据库初识;
  • 建议使用Redis连接池;

 

转载于:https://www.cnblogs.com/tqtl911/p/9557590.html

你可能感兴趣的文章
罗马数字与阿拉伯数字转换
查看>>
Eclipse 反编译之 JadClipse
查看>>
距离公式汇总以及Python实现
查看>>
Linux内核态、用户态简介与IntelCPU特权级别--Ring0-3
查看>>
第23月第24天 git命令 .git-credentials git rm --cached git stash clear
查看>>
java SE :标准输入/输出
查看>>
[ JAVA编程 ] double类型计算精度丢失问题及解决方法
查看>>
好玩的-记最近玩的几个经典ipad ios游戏
查看>>
PyQt5--EventSender
查看>>
Sql Server 中由数字转换为指定长度的字符串
查看>>
tmux的简单快捷键
查看>>
[Swift]LeetCode922.按奇偶排序数组 II | Sort Array By Parity II
查看>>
VC6.0调试技巧(一)(转)
查看>>
php match_model的简单使用
查看>>
SIP服务器性能测试工具SIPp使用指导(转)
查看>>
Vue_(组件通讯)子组件向父组件传值
查看>>
STM32单片机使用注意事项
查看>>
js window.open 参数设置
查看>>
032. asp.netWeb用户控件之一初识用户控件并为其自定义属性
查看>>
移动开发平台-应用之星app制作教程
查看>>