Git 问题小结

Posted luisyang

tags:

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

Git Status 中文乱码解决

  现象:  

       技术分享图片

  解决办法:打开Git Bash,执行git config --global core.quotepath false

linux init git project

  • GitHub上创建一个repositories项目,比如 :https://github.com/NightAlexLy/doc.git
  • 在自已的项目下面执行。 git init
  • 将资源文件添加到git。git add .
  • 提交 git commit -m "log message(自己的提交日志)”
  • git remote add origin https://github.com/NightAlexLy/doc.git,在github上面添加origin
  • git push -u origin master ,将代码同步至github。
  • 上面一步报错可能需要执行git pull --rebase origin

git提交每次都输入密码

查看git origin的地址:  git remote -v

 git remote rm origin
 git remote add origin https://username:[email protected]/username/test.git
 git push origin master

git 错误: Unable to find remote helper for ‘https’解决方法

 vi /etc/profile
添加"export PATH=$PATH:/usr/libexec/git-core"

source /etc/profile

或者是安装问题

make prefix=/usr all doc info ;# as yourself
make prefix=/usr install install-doc install-html install-info ;# as root

git 回滚远程仓库提交

  先通过  git log  查找要回退的 节点(commit_hash)

git reset --hard commit_hash

git push origin HEAD --force

 

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

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

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

Git-命令小结

git之sourceTree使用github和码云的代码小结

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

git使用小结整理