git
2021-09-30 14:50:48 8 举报
AI智能生成
git基本操作
作者其他创作
大纲/内容
git add file
git rm file
文件相关
git clone url
git pull
git commit -m \"comment\"
git push
同步相关
git branch test
创建分支
git checkout test
子主题
切换分支
1. 切换到被合并的分支 git checkout master2. 将test分支合并到master:git merge test
合并
git branch -d test
删除分支
git diff <source_branch> <target_branch>
预览差异
分支相关
基础命令
git remote -v
查看远仓库地址
git log
查看日志
查看命令
git init
仓库初始化
git clone --mirror <URL to my OLD repo location>cd <New directory where your OLD repo was cloned>git remote set-url origin <URL to my NEW repo location>git push -f origin
仓库迁移
git remote update
仓库更新
仓库相关
ssh-keygen -t rsa -C \"test@email.com\"
创建ssh-key
一般在在创建key的用户目录:~/.ssh目录下公钥放在id_rsa.pub
查看ssh-key
git config --global user.name \"username\" git config --global user.email \"email\"
全局生效
git config user.name \"username\" git config user.email \"email\"
当前仓库生效
配置用户名和邮箱
git config --list
查看配置列表
基础配置
Git
0 条评论
回复 删除
下一页