Git下载 https://git-scm.com/ 下载之后直接next安装即可 Git基本命令 工作区:当前编辑的区域 缓存区:add之后的区域 本地仓库:commit之后的区域 远程仓库:GitHub,gitlab,码云..pi. "进入想要管理的文件夹之后git bash here" git ...
分类:
其他好文 时间:
2020-01-05 13:45:23
阅读次数:
95
前言 git是一个版本控制工具, 版本控制主要的好处有三点: 从当前版本回退到任意版本 查看历史版本 对比两个版本差异 git 相关术语 repository 仓库 branch 分支 summary 摘要 track 跟踪 modify 修改 stage 暂存 commit 提交 push 推送 ...
分类:
其他好文 时间:
2020-01-04 10:23:12
阅读次数:
106
输入“git remote -v”查看项目远程地址 git branch 查看本地分支 输入“git branch -a”查看远程项目所有分支,红颜色分支代表当前所在分支,其他的所列的就是所有分支了。 输入“git status”检查下修改了什么内容,查看处于什么分支 输入“git log”查看历史 ...
分类:
其他好文 时间:
2020-01-03 23:09:38
阅读次数:
65
import os import os.path BRANCH = '├─' LAST_BRANCH = '└─' TAB = '│ ' EMPTY_TAB = ' ' def get_dir_list(path, placeholder=''): folder_list = [folder for ...
分类:
其他好文 时间:
2020-01-03 15:38:06
阅读次数:
76
工作区: 当前的编辑位置 缓存区: add 之后的区域 版本库: commit之后的区域就是版本库 git init . 初始化 git add . 将工作区的所有文件添加到缓存区 git commit -m “提交信息” 将缓存区的内容添加到版本库 git status 查看当前的状态 git r ...
分类:
其他好文 时间:
2020-01-03 10:39:16
阅读次数:
62
git init git clone git remote add origin https://github.com/wangyutao123/wyt_repo.git 绑定远程分支 git remote rm origin 删除绑定关系 git remote -v 查看绑定关系 git pull ...
分类:
其他好文 时间:
2020-01-02 19:07:55
阅读次数:
99
查看所有分支 git branch -a 2、查看当前所在分支 git branch 3、删除本地的dev-2019分支 git branch -d dev-2019 4、删除远程的dev-2019分支 git push origin --delete dev-2019 5、打分支切换 git br ...
分类:
其他好文 时间:
2020-01-02 19:03:47
阅读次数:
59
拉取远程仓库到本地: $ git clone xxxx (可选的方法:SSH、HTTPS) 查看本地分支: $ git branch 查看远程分支: $ git branch -a 切换本地分支: $ git checkout xxxx 新建一个本地分支: $ git checkout -b xxx ...
分类:
其他好文 时间:
2019-12-29 18:36:39
阅读次数:
108
git rebase是对commit history的改写。当你要改写的commit history还没有被提交到远程repo的时候,也就是说,还没有与他人共享之前,commit history是你私人所有的,那么想怎么改写都可以。而一旦被提交到远程后,这时如果再改写history,那么势必和他人的... ...
分类:
其他好文 时间:
2019-12-27 15:21:51
阅读次数:
65
[TOC] ? git&github操作 本地库和远程库 团队合作 跨团队协作远程库 本地仓库设置签名 命令: 项目级别/仓库级别:仅在当前本地库范围内有效 git config user.name tom_pro git config user.email garyxirapper@aliyun. ...
分类:
其他好文 时间:
2019-12-27 09:46:16
阅读次数:
114