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