- 1、本文档共8页,可阅读全部内容。
- 2、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
git常用命令解释概要1
GIT ANG REPO USAGE
1?git command
1.1?git add
git add . #将文件先暂存到staging area, stages new and modified, without deleted
git add -A #states all
git add -u #states modified and deleted, without new
git add -i #进入互动模式
git add filename #新增一个文件
git add modify-file #修改过得文档也要加add,不然在commit时要加-a
1.2?git rm #删除文件
git rm filename
1.3?git mv #修改文件名,或搬移目录
git mv filename newfilename
1.4?git status #查看状态
1.5?git commit
git commit
git commit -m commit message
git commit -a -m message
git commit -a -v #-v查看修改的内容
1.6?git branch
git branch #列出所有的分支
git branch new-branch #产生新的分支
git branch new-branch master #由master产生新的分支
git branch -d branch #删除分支
git branch -D branch #强制删除分支
git checkout -b new-branch #产生新分支并切换过去
git branch -r #列出所有repository branch
git branch -a #列出所有分支
1.7?git checkout
git checkout branch-name #切换到branch-name
git checkout master #切换到master
git checkout -b new-branch master #从master建立新的分支,并切换过去
git checkout -b new-branch #由当前分支建立新分支
git checkout -b new-branch origin #由origin建立分支
git checkout filename #还原状态到repository状态
git checkout HEAD . #将所有文件都checkout出来
git checkout xxxx . #xxxx是commit的编号的前四位,将xxxx编号的版本checkout出来
git checkout – * #恢复上一次commit的状态
1.8?git diff
git diff master #与master对比看哪些文件不同
git diff –cached #比较staging area与repository
git diff tag1 tag2 #tag1与tag2比较
git diff tag1:file1 tag2:file2 #tag1的file1与tag2的file2比较
git diff #当前与staging area比较
git diff HEAD #当前与repository比较
git diff new-brach #当前与newbranch的比较
git diff –stat
1.9?git tag
git tag v1 ebff #为commit ebff810c462234433434323334343设置标记v1
git tag 版本1 ebff #tag可以为中文
git tag -d 版本1 #删除标记版本1
1.10?git log
git log #列出所有log
git log –all
git log -p #列出log及修改的内容
git log -p filename #将filename的log及修改内容列出来
git log –name-only #列出哪些文件被修改
git log –stat –summary #列出各个版本间的改动及行数
git log filename #这个文件的所有log
git log directory #这个目录的所有log
git log -SFUNC()‘ #列出由FUNC()这个字符串的log
git log –no-merges #不要列出merge的log
git log –since=2 weeks ago #列出最后两周的log
git log –pretty=oneline
git log –pretty=short
1.11?git show
git show ebf
文档评论(0)