1.安装 git
sudo apt-get install git
2.查看版本:
git --version
我的版本信息:
3. 配置用户名和邮箱 :
--global 设置的全局的用户
git config --global user.name "Your Name"
git config --global user.email "email@example.com"
单个用户(cd到项目根目录下)
git config user.name "Your Name"
git config user.email "email@example.com"
查看当前用户信息:(可查到当前用户的邮箱、用户名)
git config --list
4.建立本地git仓库
cd 项目目录 (如:cd /Users/cjk/Desktop/myShop)
# 创建本地空仓库
git init
本地仓库创建成功 :
# 添加项目内容
# . 添加目录下所有文件进缓存库;
# 只添加单个文件:把 . 换成对应文件名
git add .
# 把缓存文件提交到 git 库中
git commit -m "说明、注释"
直接 git commit 会进入vim(vi)编辑器,可输入更改信息, 也可不输 ,然后 按住 shift + : ,输入wq 保存并退出。
5. 将本地库链接到远终端
git remote add origin HTTPS链接
# 如 : git remote add origin https://gitee.com/jiangyu_1013/breeze.git
6. 拉取、推送 master 分支
# 拉取
git pull origin master
# 推送
git push origin master
到此,代码就提交到远程库了。
7. 分支管理
# 新建分支
git branch newbranch
# 删除分支
git branch -D newbranch
# 查看分支
git branch
* 代表当前所在的分支
# 切换分支
git checkout new branch
# 将分支改动合并到主干
git merge newbranch
# 查看冲突
git diff
扫码关注腾讯云开发者
领取腾讯云代金券
Copyright © 2013 - 2025 Tencent Cloud. All Rights Reserved. 腾讯云 版权所有
深圳市腾讯计算机系统有限公司 ICP备案/许可证号:粤B2-20090059 深公网安备号 44030502008569
腾讯云计算(北京)有限责任公司 京ICP证150476号 | 京ICP备11018762号 | 京公网安备号11010802020287
Copyright © 2013 - 2025 Tencent Cloud.
All Rights Reserved. 腾讯云 版权所有