1.git clone 地址
clone到本地
2.git status
查看缓存上传的文件
3.git add -A
提交所有修改
注:git add上传本地项目所有变化的命令三种有 git add -A(所有修改)、git add -u、git add .
git add -A 提交所有变化
git add -u 提交被修改(modified)和被删除(deleted)文件,不包括新文件(new)
git add . 提交新文件(new)和被修改(modified)文件,不包括被删除(deleted)文件
4.git commit -a -m"修改的注释"
本次提交的备注
5.git config --global user.email "you@example.com"
输入邮箱
6.git config --global user.name "Your Name"
输入账号
7.git config --global user.password "Your password"
输入密码
注:根据具体情况git commit -a -m""之后会有提示
如:
$ git commit -a -m"第一次上传"
*** 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.
fatal: unable to auto-detect email address (got 'admin@DESKTOP-71M6BFA.(none)')
以上提示代表只需要输入邮箱和账号
8.git push
提交