Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的本地文件与 Github 同步,但我想在线上对 README 进行更改。进行此更改后,如何更新本地文件?
OBS:我是 Git 新手,也是 Git Hub 的新手。我已经用谷歌搜索了这个,没有成功。
你再次从 Github 拉取代码。
假设您的分支是master并且远程是origin(这通常是默认值)
master
origin
git pull origin master
在线编辑文件类似于在另一台计算机上进行更改并将其推送到远程存储库。
如果要将更改从远程存储库同步到本地存储库,则应使用git pull.
git pull