Git基础使用

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”命令即可,一路回车。
Git基础使用_第1张图片

2.2.1 公钥及私钥路径

私钥:/home/账号名称/.ssh/id_rsa,集群上保存

公钥:/home/账号名称/.ssh/id_rsa.pub,保存在Gitlab

2.2.2 免密设置

Git基础使用_第2张图片

3、常用命令

Git基础使用_第3张图片

3.1 git全局配置信息

  将全局的 Git 用户信息配置为自己提供的值。这样一来,无论在哪个 Git 仓库中进行提交,都会自动使用设置好的全局用户信息作为作者信息。

git config --global --list # 查看配置信息

git config --global user.name "Your Name" # 设置全局的用户名称
git config --global user.email "[email protected]" # 设置全局的电子邮件地址

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 [email protected]/XX/test.git
git clone https://gitlab.*.com/*/test.git

cd test
touch temp1 temp2
git add temp1 temp2
git commit -m "add temp1 temp2 file"
git push -u origin master

你可能感兴趣的:(生信软件,git)