
git
小辉辉2345
敲起代码就忘我的码农
展开
-
idea git 绑定 遇到的坑
1.idea配置git.exe路径2.指定项目目录为对应git仓库3.设置远程仓库4.拉取对应项目的文件5.选中文件夹 右键 git ->add git-> commit6.vcs -> git -> push...原创 2019-05-06 23:47:02 · 1651 阅读 · 0 评论 -
git 相关命令
分支命令查看本地分支 git branch查看远程分支 git branch -r查看所有分支 git branch -a创建本地分支 git branch test 创建远程分支 git push origin test:test切换本地分支 git checkout test 切换远程分支 git checkout -b test origin/test删除本地分支...原创 2019-05-21 19:32:48 · 146 阅读 · 0 评论