美文网首页
GIT常用命令

GIT常用命令

作者: devmao | 来源:发表于2019-10-24 13:47 被阅读0次

创建版本库

  1. 进入文件空目录,执行命令:

git init

  1. 把文件提交到暂存区(·:全部文件;文件名:单个文件)

git add .

  1. 将暂存区文件提交到本地仓库

git commit -m "这里是提交注释"

远端仓库

  1. 本地仓库与远端仓库建立关联
    先有本地库,后有远端库

git remote add origin git@github.com:devmao/xxx.git

先有远端库,后有本地库

git clone git@github.com:devmao/xxx.git

  1. 把本地库master的内容推送到远端
    -u是将本地的master分支与远端的master分支关联起来,之后的推送就可以省略了

git push -u origin master
git push origin master
git push origin master -f

  1. 更新代码

git pull origin master

放弃本地所有修改

git checkout .

版本回退

  1. 先查看提交记录

git log

  1. 找到要回退到的节点,执行回退

git reset --hard xxx

分支管理

  1. 查看分支

git branch

  1. 创建分支

git branch xxx

  1. 分支切换

git switch xxx

  1. 创建并切换分支

git switch -c xxx

  1. 合并某个分支到当前分支

git merge xxx

  1. 删除分支

git branch -d xxx

标签管理

通常情况下,在一个版本发版后,应打tag,方便后续查看版本;

  1. 新建一个标签,默认为HEAD

git tag <tagname>

  1. 指定某次commit打tag

git tag <tagname> <commitId>

  1. 为某次commitID打tag并添加注释

git tag -a <tagname> -m "注释" <commitId>

  1. 查看所有标签

git tag

参考

https://www.liaoxuefeng.com/wiki/896043488029600

相关文章

网友评论

      本文标题:GIT常用命令

      本文链接:https://www.haomeiwen.com/subject/lfyrvctx.html