码迷,mamicode.com
首页 > 其他好文 > 详细

git简单使用

时间:2018-09-07 23:53:29      阅读:240      评论:0      收藏:0      [点我收藏+]

标签:存在   add   创建   端口   ssh   name   自己的   生成   article   

git设置http和https代理

# 注意: 将下方的 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仓库初始化

  1. git init //初始化仓库

  2. git add -A //添加所有文件到本地仓库

  3. git commit -m “first commit” //添加本次提交的描述信息

  4. git remote add origin + 远程仓库地址 //链接远程仓库,创建主分支

  5. git push -u origin master //把本地仓库的文件推送到远程仓库

关于Git Push推送失败的两种解决方案

git分支(branch)

分支是对仓库的复制,在分支中所做的改动,不会影响到父级文件。
大多数情况下,父级仓库是master分支

使用checkout配合-b旗标创建一个新分支
git checkout -b xxx

列出所有分支,星号表示当前所在分支
git branch

git push到多个远程仓库

编辑.git/config
在已经存在的ulr = xxx下再添加一条url = xxx

git仓库 http和ssh互换

  1. 设置git用户名和邮箱
    git config --global user.name "YourName" git config --global user.email "email@mail.com"

  2. 生成密钥并在github中添加密钥,确保email地址跟上方相同
    ssh-keygen -t rsa -C "email@email.com"

  3. .git/config
    url = http://xxx.com/Name/project.git 改为 url = git@xxx.com/Name/project.git

  4. 测试你的ssh-key
    ssh -T git@github.com

参考文档:

git仓库从http链接转为ssh
关于Git Push推送失败的两种解决方案
git push同时推送到两个远程仓库

git简单使用

标签:存在   add   创建   端口   ssh   name   自己的   生成   article   

原文地址:https://www.cnblogs.com/CodeAndMoe/p/9607512.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!