Git
Git
最新博文
-
Git本地创建新分支,并推送到远程
> 1.本地创建分支并切换分支 ``` git checkout -b develop ``` > 2.将develop分支推送到远程 ``` git push origin develop:develop ``` > 3.建立本地至上游(远程)分支的链接,这样代码才能提交到远程 ``` git branch --set-upstream-to=orgin/develop ``` > 4.取消对develop分支的跟踪(需要取消跟踪时才操作) ```
2021-12-01【Git】
阅读更多 -
git中文字体报错
Git从 GitHub 下载的 Git for Windows 客户端,使用 Shell 过程中如果路径含有中文会报告一个警告。Warning: Your console font probably doesn't support Unicode. If you experience strange characters in the output, consider switching to a TrueType font such as Lucida Console! &nbs
2020-05-06【Git】
阅读更多 -
Git中撤销提交
Git中撤销提交https://www.cnblogs.com/zhuxiaoxi/p/8532540.htmlGit的几种状态未修改 原始内容 已修改 ↓ 工 作 区 已暂存 ↓ git add 暂 存 区 已提交 ↓  
2020-05-06【Git】
阅读更多 -
.gitignore忽略规则
.gitignore忽略规则
2020-05-06【Git】
阅读更多 -
Git 操作详解
GitGit 操作详解
2020-05-06【Git】
阅读更多