git环境搭建
-
Mac自带
git
无需安装
可以使用git --version
查看是否安装
下载地址是 https://git-scm.com/download/mac -
配置
git
用户名邮箱
# 设置用户姓名
git config --global user.name "姓名"
# 设置可以联系的邮箱地址
git config --global user.email "联系邮箱"
# 查看设置信息
git config --global --list
本地仓库配置
- 编写
.gitignore
文件
// 排除一些不需要提交的文件
target/
.idea/
xxx.iml
- 创建和提交仓库
cd 项目路径
git init
git add .
git commit -m 'init'
远程仓库gitee
- 创建远程仓库
1.登录gitee.com
2.创建远程仓库,填写项目名称、路径,创建仓库
3.将项目提交到远程仓库
cd 项目路径
git remote add origin https://gitee.com/menx/xxx.git
git push -u origin master // 这一步要输入gitee的账户密码
- 拉取远程仓库代码
cd 项目路径
git clone https://gitee.com/menx/xxx.git
- 提交修改代码
git status // 查看修改
git add .
git commit -m 'update'
git push
- 更新远程仓库代码
git pull
在idea中使用git
idea默认已安装git
插件
Preferences | Plugins
,在这里搜索git
查看是否安装
使用方式:1.Git
菜单;2.右击项目git
提交代码到远程仓库:Git | commit...
更新远程代码到本地:Git | pull...
参考
https://blog.csdn.net/qq_39052513/article/details/104637326
网友评论