2024年11月21日星期四 下午8:02:58

git Sharing your configuration on GitHub

1 年 前
#19991 引用
首先从index暂存区 中删除

git rm -r --cached .

rm 'custom_components/xiaomi_miot/xiaomi_miot/water_heater.py'
rm 'media/DSD-OneIlove.wav'
rm 'media/DSD-雨花石-莫斯满.wav'
rm 'scenes.yaml'
0
10 个月 前
#28370 引用
20240120

git remote -v

t@raspberrypi:/home/homeassistant20221103/.homeassistant# git remote -v
origin  https://fr:[email protected]/free/Home-AssistantConfig20221103.git (fetch)
origin  https://fr:[email protected]/free/Home-AssistantConfig20221103.git (push)

0
10 个月 前
#28389 引用
change the URL of your Git origin remote.


git remote set-url <remote_name> <remote_url>


get <remote_name>
t@raspberrypi:/home/homeassistant20221103# git remote
origin

t@raspberrypi:/home/homeassistant20221103# git remote -v
origin                  https://github.com/mslycn/Home-AssistantConfig20221103.git (fetch)
origin                  https://github.com/mslycn/Home-AssistantConfig20221103.git (push)
<remote_name>     <remote_url>

git remote  set-url origin https://github.com/mslycn/Home-AssistantConfig20221103.git


t@raspberrypi:/home/homeassistant20221103# git remote -v
origin  https://github.com/mslycn/Home-AssistantConfig20221103.git (fetch)
origin  https://github.com/mslycn/Home-AssistantConfig20221103.git (push)



https://devconnected.com/how-to-change-git-remote-origin/
0
8 个月 前
#28556 引用
Git push says “Everything up-to-date” but the files are not appearing in github repository
0
8 个月 前
#28557 引用
On branch main
Your branch is up to date with 'origin/main'.

Changes not staged for commit:
0
8 个月 前
#29592 引用
S
git  回退到前面

git log


git reset --hard 1ca27610593359dad66fc82c148efc3a4ccf4ea8
0
8 个月 前
#29666 引用
cd /home/homeassistant20221103  run ok

0
5 个月 前
#39278 引用
202405  pi

cd /data
sudo git add .
sudo git commit -m "all commit"
sudo git push -u origin main


raspberrypi:/data $ sudo git push -u origin main
0
5 个月 前
#39282 引用
Git克隆仓库报错:HTTP/2 stream 1 was not closed  202405

raspberrypi:/data $ sudo git push -u origin main
fatal: unable to access 'https://github.com/mslycn/homeassistant20221103.git/': HTTP/2 stream 1 was not closed cleanly before end of the underlying stream



报错原因
http/2 和 http/1.1之间有个区别是“HTTP2 基于 SPDY,专注于性能,最大的一个目标是在用户和网站间只用一个连接”。

解决方法
方法一:关闭所有github所有页面,关闭所有和github之间的连接,然后再次push,就成功了。

https://blog.csdn.net/qq_43276566/article/details/138563086
0
5 个月 前
#39283 引用
Updates were rejected because the tip of your current branch is behind


报错原因

说明:
该报错在git push时出现,一句话解释就是你在本地仓库上的修改没有基于远程库最新版本,你的本地仓库版本落后于远程仓库。(这个报错告诉我们在本地开发的时候,要经常使用git pull获取远程分支最新改动,这样才能保证在最终git push的时候本地commit历史和远程commit历史是一致的)

run ok
raspberrypi:/data $ sudo git push -f -u origin main


原文链接:https://blog.csdn.net/weixin_42310154/article/details/118676936
0