git的安装配置

CGC Lv4

git的安装

Windows

可在官方网站上下载,网站:https://git-scm.com/\
也可在国内镜像源下载,网站:http://npm.taobao.org/mirrors/git-for-windows

Ubuntu

1
2
3
sudo apt-get update
sudo apt-get upgrade
sudo apt-get install git

github账号的注册

进入github,注册账号,网站:https://github.com/

在此处要注意记住你注册时的用户名和邮箱

git的配置

找到git命令行输入处

方法1-Windows

在文件夹中右键,点击 git bash ,没有也没关系,很可能会没有

方法2-Windows

win+r 后输入 cmd (在默认路径下呼出)
或 在你的目标文件夹下点击上面的框,输入 cmd 然后回车可以在当前路径下呼出 cmd

方法3-Ubuntu

直接在终端中输入 git 命令即可

配置用户名

在命令行中输入

1
git config --global user.name "username"

此处 username 是自己的用户名

配置邮箱

在命令行中输入

1
git config --global user.email "username@email.com"

此处 username@email.com 是自己的邮箱

验证配置

在命令行中输入

1
git config --global --list 

输出内容可以检查你的配置信息是否争取,如有误可以回到前面的配置步骤进行更改

至此,git下载及配置完成

git常用命令的学习

推荐一个教程网站:https://learngitbranching.js.org/?locale=zh_CN

  • Title: git的安装配置
  • Author: CGC
  • Created at: 2023-04-10 21:10:28
  • Updated at: 2023-04-10 21:49:41
  • Link: https://redefine.ohevan.com/2023/04/10/git的安装配置/
  • License: This work is licensed under CC BY-NC-SA 4.0.