当前位置:   article > 正文

Git操作

Git操作

拉取

1.建立文件夹后进行到文件夹
git init
2.建立远程连接
git remote add origin git@github.com:cameronhimself/vue-drag-drop-demo.git
3.获取远程分支
$ git fetch origin master
4.建立本地分支
$ git checkout -b dev origin/master
5.拉取至本地
$ git pull origin master
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10

提交

1.进入项目文件夹
git init
2.设置提交的文件#add . 代表所有文件
git add .
3.设置提交信息
git commit -m "first commit"
4.设置提交到的GitHub地址
git remote add origin git@github.com:TQGiser/Vue3Prac.git
5.上传文件
git push -u origin master
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10

更新

1.查看更改的文件
git status
2.添加需要更新的文件清单
git add .
3.上传
git commit -m '更新信息'
删除remote
```bash
git remote rm origin
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9

强行更新

git push -u origin master -f
  • 1
账号注册
```bash
git config --global user.email "5404****@qq.com"
git config --global user.name "TQGiser"
  • 1
  • 2
  • 3
  • 4

提交443问题

git config --global --unset http.proxy
git config --global --unset https.proxy
  • 1
  • 2

NPM设置

#设置淘宝镜像
npm config set registry=https://registry.npm.taobao.org 
#查看服务器
//查看使用的镜像源
npm get registry
//全局设置taobao镜像源
npm config set registry http://registry.npmmirror.org
//全局设置npm官方镜像源
npm config set registry http://www.npmjs.org
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9

查看SSH钥匙
在这里插入图片描述

在这里插入图片描述

$ cat ~/.ssh/id_rsa.pub

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

闽ICP备14008679号