一.下载git
git官方下载跳转
安装简单,有手就行文章来源地址https://www.toymoban.com/news/detail-633823.html
二. git的简单使用
1. 连接远程仓库
#初始化
git init
#配置账户
git config --global user.name “输入你的用户名”
git config --global user.email “输入你的邮箱”
git config --list #--q退出
#配置验证邮箱
ssh-keygen -t rsa -C “刚才输入的邮箱”
#生成密钥--把生成的密钥复制到git网站新增密钥里
cat ~/.ssh/id_rsa.pub
2.远程库关联
#初始化
git init
#远程库关联
git remote add origin 路径
#如果 error: remote origin already exists.
#先删除之前关联的远程库--在关联
git remote rm origin
3. 拉取远程分支
#拉取远程所有分支
git fetch --all
#拉取远程master分支
git fetch origin master
#查看所有分支
git brabch -al
#拉取远程master代码到本地
git pull origin master
#拉取远程其它分支到本地
#先切换到该分支
git checkout -b 分支名
#然后拉取分支代码到本地
git pull origin 分支名
4.上传到远程分支
#上传到主分支
git init
#添加文件到暂存区,.上传全部的文件 文件夹
git add .
#需要上传的文件 文件夹
git add *
#将暂存区内容添加到仓库中,双引号内对上传文件描述
git commit -m “第一次上传” #这个一定要填东西,要不然会失败。
git status # 查看是否还有文件未提交
git push origin master #提交上去
5.总结
1.git init
2.git branch -a #查看所有分支
3.git branch slave #创建slave分支
4.git checkout slave #切换到slave分支
5.git remote add origin https://gitlab.com/helenls/sca_apitest01.git#关联远程仓库,添加后,远程库的名字就是 origin,这是 Git 默认的叫法,也可以改成别的
6.git push origin slave:slave #本地分支(冒号前面的分支)与远程分支同名(冒号后面的分支)未创建分支。
6.git push origin slave #上传分支,上传 到gitlab,slave为gitlab名字
文章来源:https://www.toymoban.com/news/detail-633823.html
到了这里,关于git使用(常见用法)的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!