- 查看git是否设置用户名和邮箱。(已设置省略此步骤,未设置需配置)
- 查看所有配置信息? ? ?
-
git config --list
- 查看用户名、邮箱
-
git config user.name
git config user.email
- 设置用户名、邮箱
-
git config --global user.name "xxxx(新的用户名)"
git config --global user.email "xxxx@xxx.com(新的邮箱)"
- clone远程项目
-
git clone git@xx.xx.xxx.xx:project-group-name/project-name.git(git ssh地址)
- 进入项目目录
-
cd project-name(项目目录名称)
- 项目初始化
-
git init
- 将本地所有未跟踪的文件全部提交到仓库暂存区
-
git add .
- 将文件提交到仓库
-
git commit -m '备注'
- 本地项目与远程仓库关联
-
git remote add origin git@xx.xx.xxx.xx:project-group-name/project-name.git(git ssh地址)
- 将本地所有文件推送到远程仓库
-
git push -u origin master
- 最后,进入gitlab查看项目代码,代码已上传到远程仓库。
|