gitbash 安装与使用

简介: gitbash 安装教程

@TOC

安装

官网 https://git-scm.com/download/win 下载电脑对应的安装包,然后直接安装即可。

使用

初始化

设置用户

git config --global user.name "Your Name"
git config --global user.email "email@example.com"

注:这里设置的用户是每次对仓库进行操作时的用户,用于标识各种操作(push啥的)的作者。
查看是否设置成功:

git config --global --list

image.png

设置ssh

先判断是否配置了 ssh

~/.ssh

输出 No such file or directory 那就是没有,需要配置。
输入下面代码进行配置:

ssh-keygen -t rsa -C "邮箱"

在提示中选择保存的路径和设置密码,如果不需要密码可以直接回车。直到输出key。
SSH 密钥的保存位置:

C:\user\username\.ssh

或者用 ~/.ssh 查看 ssh 文件位置。
image.png
image.png

建立密钥

打开 github,进入密码生成页面:
image.png
image.png

title 随意,将 .ssh 文件夹下的 id_rsa.pub 的内容全部复制到 key 里,点击生成即可。

连接远程仓库

  1. 在指定文件夹内初始化本地仓库:
    ```bash
    git init
  2. 连接远程仓库:
    ```bash
    git remote add 连接名 git@github.com:xxxxx/xxxxx.git
  3. 查看连接状态:
    git remote -v
    ## 克隆远程仓库
    保证本地和远程同步:
    ```bash
    git pull 连接名 分支
    
    注:本地和远程分支不一样,调整分支:
    git checkout 分支名
    

    连接超时问题

    连接仓库时出现:
ssh:connect to host github.com port 22: Connection timed out

先用 cd ~/.ssh 查看 ssh 配置了没有,没有就配置一下。有的话就需要配置新的连接端口。
在文件夹 .ssh 里,新建 config 文本,内容如下:

Host github.com
User 注册github的邮箱
Hostname ssh.github.com
PreferredAuthentications publickey
IdentityFile ~/.ssh/id_rsa
Port 443

验证:

ssh -T git@github.com
目录
相关文章
|
6月前
|
JavaScript 中间件 Shell
JXcore 安装
JXcore 安装
63 2
|
7月前
|
程序员 Python
Anconda安装(超详细 3(4)
Anconda安装(超详细 3(4)
Anconda安装(超详细 3(4)
|
7月前
|
Rust Linux iOS开发
安装rustup
安装rustup
121 0
|
Kubernetes Linux 网络安全
安装k8s
完成安装k8s集群以后,推荐使用[https://github.com/512team/dhorse](https://github.com/512team/dhorse)发布应用。 ## 准备环境 准备两台服务器节点,如果需要安装虚拟机,可以参考[《wmware和centos安装过程》](https://blog.csdn.net/huashetianzu/article/details/109510266) | 机器名 | IP | 角色 | CPU | 内存 | | :----: | :----: | :----: | :----: | :----: | | centos01 |
|
NoSQL 网络安全 Redis
redisd的简易安装运用
redisd的简易安装运用
76 0
|
定位技术
g2o安装
g2o安装
307 0
g2o安装
ceres安装
ceres安装
506 0
ceres安装
WinDriver 安装
WinDriver 安装
132 0
RedisClient 安装
RedisClient 安装
481 0
RedisClient 安装
|
Java 关系型数据库 MySQL
Linkis安装
Linkis安装
276 0
Linkis安装
下一篇
无影云桌面