当前位置:   article > 正文

gitlab 常用介绍

gitlab网页中repository简介

1.如果想检查你的设置,可以使用 git config --list 命令来列出Git可以在该处找到的所有的设置:

  1. $ git config --list
  2. credential.helper=osxkeychain
  3. user.name=xxx
  4. user.email=xxxxxxx@qq.com
  5. core.repositoryformatversion=0
  6. core.filemode=true
  7. core.bare=false
  8. core.logallrefupdates=true
  9. core.ignorecase=true
  10. core.precomposeunicode=true
  11. remote.origin.url=http://git.oakiotiiixxx.cc:5000/krypot/flask-jxc.git
  12. remote.origin.fetch=+refs/heads/*:refs/remotes/origin/*
  13. branch.master.remote=origin
  14. branch.master.merge=refs/heads/master

2.git pull命令的作用是:取回远程主机某个分支的更新,再与本地的指定分支合并。

一句话总结git pull和git fetch的区别:git pull = git fetch + git merge

git fetch不会进行合并执行后需要手动执行git merge合并分支,而git pull拉取远程分之后直接与本地分支进行合并。更准确地说,git pull使用给定的参数运行git fetch,并调用git merge将检索到的分支头合并到当前分支中。

基本用法:

git pull :

例如执行下面语句:

git pull origin master:brantest

将远程主机origin的master分支拉取过来,与本地的brantest分支合并。

后面的冒号可以省略:

git pull origin master

表示将远程origin主机的master分支拉取过来和本地的当前分支进行合并。

上面的pull操作用fetch表示为:

git fetch origin master:brantest
git merge brantest

相比起来git fetch更安全一些,因为在merge前,我们可以查看更新情况,然后再决定是否合并。
vscode git
http://www.voidcn.com/article/p-qxmnfqhk-brb.html

转载于:https://www.cnblogs.com/plusUltra/p/10916927.html

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/不正经/article/detail/466926
推荐阅读
相关标签
  

闽ICP备14008679号