版本控制
普通网友
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
Git 与 Gitee进行关联
1、给本地git配置全局属性user.name、user.email(github 的账号) git config --global user.name "your name" git config --global user.email "your_email@youremail.com" 2、在本地创建ssh key(通过github的账号生成ssh key) ssh-keygen -t rsa -C "your_email@youremail.com" 3、输入...原创 2020-05-29 17:56:46 · 3055 阅读 · 0 评论 -
Git 与 Github进行关联
1、给本地git配置全局属性user.name、user.email(github 的账号) git config --global user.name "your name" git config --global user.email "your_email@youremail.com" 2、在本地创建ssh key(通过github的账号生成ssh key) ssh-keygen -t rsa -C "your_email@youremail.com" 3、输入...原创 2020-05-29 17:03:13 · 486 阅读 · 0 评论 -
Gui Bash命令行模式
基本操作: 1、mkdir fileName 2、cd dirPath 3、git init 4、git clone d:/xxxx--本地 git clone git@github.com:fsliurujie/test.git --SSH协议 git clone git://github.com/fsliurujie/test.git --GIT协议 git clone https://github.com/fsliurujie/test.git --...原创 2020-05-28 17:37:41 · 541 阅读 · 0 评论 -
Git Gui操作
1、新建一个文件夹 2、在该文件夹中启动Git Gui,新建一个本地仓库 3、新建成功后,在文件夹中,随便建一个文件,进行 rescan--》stage changed--》sign off--》commit ps:为了初始化仓库 4、在菜单栏Remote下add一个Remote 5、在菜单栏Branch下checkout 详情: Repository Explore Working Copy 打开项目所在文件位置 Git Bash Git命令模式 ...原创 2020-05-27 17:56:17 · 1442 阅读 · 0 评论
分享