Git 相关

Posted john-h

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Git 相关相关的知识,希望对你有一定的参考价值。

一、中文乱码

git config --global core.quotepath false # 显示 status 编码
git config --global gui.encoding utf-8    # 图形界面编码
git config --global i18n.commitencoding utf-8  # 提交信息编码
git config --global i18n.logoutputencoding gbk # 输出 log 编码
export LESSCHARSET=utf-8

二、切换到远程分支

如果没有clone,先clone

git clone ...

查看远程分支

git branch -a

* master
  remotes/origin/HEAD -> origin/master
  remotes/origin/Release
  remotes/origin/master

切换到 origin/Release分支,并在本地新建分支 myRelease

git checkout -b myRelease origin/Release

Branch myRelease set up to track remote branch Release from origin.
Switched to a new branch ‘myRelease‘





以上是关于Git 相关的主要内容,如果未能解决你的问题,请参考以下文章

VSCode自定义代码片段15——git命令操作一个完整流程

如何管理在每个 git 版本中添加私有代码片段?

使用 Git 来管理 Xcode 中的代码片段

markdown Git代码片段

GitGit 分支管理 ( 克隆远程分支 | 克隆 master 分支 git clone | 查看远程分支 git branch -a | 克隆远程分支 git checkout -b )(代码片段

GitGit 分支管理 ( 克隆远程分支 | 克隆 master 分支 git clone | 查看远程分支 git branch -a | 克隆远程分支 git checkout -b )(代码片段