GIT——远程分支

GIT——远程分支
https://qnimg.ffing.cn/wp-content/uploads/2021/03/image-9.png?imageView2/0/q/75|watermark/1/image/aHR0cHM6Ly9xbmltZy5mZmluZy5jbi9mbl9sb2dvLnBuZw==/dissolve/55/gravity/SouthEast/dx/0/dy/0

一、Git的配置

1.设置用户名和邮箱(–global 为全局参数,表明本地所有Git仓库都会使用这个配置)

git config --global user.name "yourname"

git config --global user.email "your_email@youremail.com"

2.生成密钥(SSH key),如果已关联秘钥可跳过

ssh-keygen -t rsa -C "your_email@youremail.com"
https://qnimg.ffing.cn/wp-content/uploads/2021/03/image-4.png?imageView2/0/q/75|watermark/1/image/aHR0cHM6Ly9xbmltZy5mZmluZy5jbi9mbl9sb2dvLnBuZw==/dissolve/55/gravity/SouthEast/dx/0/dy/0

3.添加密钥(SSH key),并验证是否成功

添加密钥:将上一步骤生成的密钥即.ssh/id_rsa.pub中内容全部复制。在github的 Settings–>SSH and GPG keys–>New SSH key,key中粘贴复制的内容(Title自定义)。

验证:github输入第一条的命令,码云输入第二条

#github
ssh -T git@github.com
#gitee
ssh -T git@gitee.com

二、创建项目工程

1.远程仓库:在github中New repository 输入Repository name。[例如:TestDemo]

2.项目工程:在自己本地电脑上新建一个与github新项目工程同名的文件夹。[例如:TestDemo]

三、创建版本库

 进入步骤二中的文件夹下,输入以下命令初始化仓库,若出现:Initialized empty Git repository in *:/.git/ 则表示创建成功[注意:此时会生成一个.git目录(隐藏目录)]

git init

四、连接远程仓库(下面两种方式都可以)

#ssh协议连接
git remote add origin git@github.com:yourName/repositoryname.git
#http协议连接
git remote add origin https://github.com/yourName/repositoryname.git

五、将本地文件push到远程分支

git add .                      将文件添加到暂存区

git commit -m "commnet"             提交更改,添加备注信息

git checkout -b 分支名称          创建本地分支

git checkout 分支名称             切换本地分支

git push origin 分支名称       将本地仓库的文件push到远程分支(若 push 不成功,可加 -f 进行强推操作)

good good study, day day up!

发表评论

textsms
account_circle
email

GIT——远程分支
一、Git的配置 1.设置用户名和邮箱(--global 为全局参数,表明本地所有Git仓库都会使用这个配置) git config --global user.name "yourname" git config --global user.email "you…
扫描二维码继续阅读
2021-03-11