Git使用经验记录
本文记录使用Git代码管理工具实用的经验记录。
- 修改Repository为taobao镜像
–registry https://registry.npm.taobao.org
例如: npm install packagename –registry https://registry.npm.taobao.org - 对比两个分支修改的文件,–stat显示文件,不加该参数显示文件内容。
git diff branch1 branch2 –stat
- 添加git命令别名,可以使用命令设置:
git config –global alias.st status
当然也可以在.gitconfig文件中一次性设置好:
[alias]
co = checkout
st = status
ci = commit
br = branch
dt = difftool
mt = mergetool
last = ‘log -1’ - 设置文本编辑器,用来commit时候填写comments。
[core]
editor = "D:\Program Files (x86)\Tools\Notepad.exe" - 撤销单个文件
git checkout – filepath
- 查看所有分支
git branch -a
- 查看远端分支
git branch -r
- 基于分支新建一个分支
git co -b based_on_branch new_branch
- Git Flow

- 重命名分支
git branch -m devel develop
如果觉得我的文章对您有用,请随意打赏。
您的支持将是我最大的动力!