git 基础使用

git 基础使用

安装

window

https://git-scm.com/download/win

配置

安装完 Git 之后,要做的第一件事就是设置你的用户名和邮件地址。 这一点很重要,因为每一个 Git 提交都会使用这些信息,它们会写入到你的每一次提交中,不可更改。

git config --global user.name "your name"
git config --global user.email "your@email.com"

初始化

git init

克隆

git clone <url>

提交

git add .
git commit -m 'some message'
posted @ 2022-05-03 22:51  梦渊同学  阅读(22)  评论(0)    收藏  举报