主页

git的简单使用(创建项目)

2023-08-21 02:49PM

1. git init .

2. git branch -M main

3. git remote add origin https://github.com/xxx/blog.git

4.使用 git commit命令

git commit -m 'first commit'

会提示:

Author identity unknown

*** Please tell me who you are.

Run

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

to set your account's default identity.
Omit --global to set the identity only in this repository.

1)先使用 git config user.name 'xxxxxx'

2)再使用 git config user.email 'xxxxxxxxxxxxxx'

3)然后再使用 git commit -m 'first commit'

6. git push -u origin main

7. git log

返回>>

登录

请登录后再发表评论。

评论列表:

目前还没有人发表评论