聊聊Git的使用方法

Git克隆项目

  • 克隆项目代码
git clone ssh地址

若出现密钥问题

The authenticity of host 'git.dev.tencent.com (118.25.166.124)' can't be established.
RSA key fingerprint is SHA256:jok3FH7q5LJ6qvE7iPNehBgXRw51ErE77S0Dn+Vg/Ik.
Are you sure you want to continue connecting (yes/no)? yes
Warning: Permanently added 'git.dev.tencent.com,118.25.166.124' (RSA) to the list of known hosts.
[email protected]: Permission denied (publickey).
fatal: Could not read from remote repository.

Please make sure you have the correct access rights
and the repository exists.

1.需要输入以下指令创建公钥

ssh-keygen -t rea -b 4096 -C "github邮箱"

2.在~/ssh目录下产生了公钥文件id_rsa.pub 和 私人钥 id_rsa.rsa
3.把公钥内容复制到github的 Ssh And GPG KEYs一栏
接下来就可以重新进行克隆了。

Git基本命令解释

  • 已提交 该文件已经被安全地保存在本地数据库了
  • 已修改 修改了某个文件,但还没有提交
  • 已暂存 把已经修改的文件放在下次提交时要保存的清单中

基本命令讲解

  • git status
    查看仓库状态
  • git add.
    把所有的文件放入暂存区
  • git commit -am “add file”
    把暂存区的更新提交到本地库中
  • git push
    把本地库中的更新提交到远程库中
  • git pull
    把远程的仓库的更新合并到本地仓库
  • git remote -v
    (查看浏览器标签)
  • git push -f origin master
    (强制推送)
  • git remote add abc git@***.com
    (添加一个远程库标签)
  • git push gitlab msater
    (推送到gilab标签地地址上)
  • git remote remove gitlab
    (删除gitlab标签)
  • git remote set-url origin [email protected]
    (修改origin标签对应的地址)
  • git remte rename gitlab coding
    (把gitlab标签修改为coding)

从本地创建一个空项目推送到远程项目中

  • cd …
  • mkdir blogtest
  • touch README.md
  • git init (创建一个仓库)
  • git add.
  • git commit -am “init”
  • git remote add origin [email protected]:JakeYi/blogtest.git
  • git push origin master

分支操作

  • git branch dev
    创建本地dev分支
  • git checkout dev
    切换到dev分支
  • git push origin dev
    推送到origin地址的分支上
  • git checkout dev
    切换到dev分支上
  • git checkout master
  • git merge master
    把dev分支上的内容合并到当前的分支上

你可能感兴趣的:(聊聊Git的使用方法)