Git基础使用
- 1、git的本质
- 2 Gitlab账号申请、免密设置
- 2.1 申请Gitlab账号
- 2.2 免密设置
- 2.2.1 公钥及私钥路径
- 2.2.2 免密设置
- 3、常用命令
- 3.1 git全局配置信息
- 3.2 初始化项目
- 3.3 拉取项目
将日常笔记记录上传,方便日常使用翻阅。
1、git的本质
git对待数据更像是一个快照流,只记录版本间的差异;
2 Gitlab账号申请、免密设置
2.1 申请Gitlab账号
此部分忽略,项目组及IT会提供.
2.2 免密设置
生成账号的公钥,方便进行免密操作。使用”ssh-keygen”命令即可,一路回车。
2.2.1 公钥及私钥路径
私钥:/home/账号名称/.ssh/id_rsa,集群上保存
公钥:/home/账号名称/.ssh/id_rsa.pub,保存在Gitlab
2.2.2 免密设置
3、常用命令
3.1 git全局配置信息
将全局的 Git 用户信息配置为自己提供的值。这样一来,无论在哪个 Git 仓库中进行提交,都会自动使用设置好的全局用户信息作为作者信息。
git config --global --list # 查看配置信息git config --global user.name "Your Name" # 设置全局的用户名称
git config --global user.email "your.email@example.com" # 设置全局的电子邮件地址git config -e # 不加global,仅针对当前仓库
3.2 初始化项目
git config --global init.defaultBranch main # 初始化
git init newrepo # 创建新的项目git add *.c
git add README
git commit -m '初始化项目版本'
3.3 拉取项目
git clone git@gitlab.XX.com/XX/test.git
git clone https://gitlab.*.com/*/test.gitcd test
touch temp1 temp2
git add temp1 temp2
git commit -m "add temp1 temp2 file"
git push -u origin master