关于git 的使用 12

git config --global user.name “whoooooooh” 配置用户名

git config --global user.email “whoooooooh@foxmail.com” 配置邮箱

ssh-keygen -t rsa -C “whoooooooh@foxmail.com” 生成密钥

cat ~/.ssh/id_rsa.pub 密钥对的位置默认在计算机当前用户目录的.ssh里

ssh -T git@github.com 测试命令

转载:
https://blog.csdn.net/u011482647/article/details/112259020?utm_medium=distribute.pc_feed_404.none-task-blog-2defaultBlogCommendFromBaidudefault-4.control404&depth_1-utm_source=distribute.pc_feed_404.none-task-blog-2defaultBlogCommendFromBaidudefault-4.control40

创建新的存储,基本操作:

1、New Repository – 新存储库
2、git clone 地址 拉去
3、放文件 到目录
4、git add.
5、git commit -m ‘描述’
6、git push

分支管理
git branch:查看分支命令
git branch (branchname):创建分支命令
git checkout (branchname):切换分支命令
git merge:合并分支命令
git branch -d (branchname):删除分支命令

上一篇:开发中,常用git操作命令


下一篇:Git常用操作