标签: github
我可以通过sudo apt-get update从Github更新克隆的存储库吗?此更新与使用git pull的更新有何不同?
sudo apt-get update
git pull
答案 0 :(得分:0)
没有。要使用git(和Github),您可以向this tutorial学习。
git
sudo apt-get update用于更新操作系统(Ubuntu)的软件包信息。 sudo用于将超级用户级别归因于当前用户; apt-get是您操作系统的包管理器; update是用于更新包信息的apt-get命令。
sudo
apt-get
update