标签:存在 add 创建 端口 ssh name 自己的 生成 article
# 注意: 将下方的 127.0.0.1:1086或1087 更改为你自己的端口
# socks5
git config --global http.proxy socks5://127.0.0.1:1086
git config --global https.proxy socks5://127.0.0.1:1086
# http和https
git config --global http.proxy http://127.0.0.1:1087
git config --global https.proxy https://127.0.0.1:1087
git init //初始化仓库
git add -A //添加所有文件到本地仓库
git commit -m “first commit” //添加本次提交的描述信息
git remote add origin + 远程仓库地址 //链接远程仓库,创建主分支
git push -u origin master //把本地仓库的文件推送到远程仓库
分支是对仓库的复制,在分支中所做的改动,不会影响到父级文件。
大多数情况下,父级仓库是master分支
使用checkout配合-b旗标创建一个新分支
git checkout -b xxx
列出所有分支,星号表示当前所在分支
git branch
编辑.git/config
在已经存在的ulr = xxx
下再添加一条url = xxx
设置git用户名和邮箱
git config --global user.name "YourName" git config --global user.email "email@mail.com"
生成密钥并在github中添加密钥,确保email地址跟上方相同
ssh-keygen -t rsa -C "email@email.com"
把.git/config
中
url = http://xxx.com/Name/project.git 改为 url = git@xxx.com/Name/project.git
测试你的ssh-key
ssh -T git@github.com
git仓库从http链接转为ssh
关于Git Push推送失败的两种解决方案
git push同时推送到两个远程仓库
标签:存在 add 创建 端口 ssh name 自己的 生成 article
原文地址:https://www.cnblogs.com/CodeAndMoe/p/9607512.html