实践获取远程仓库代码
克隆远程仓库到本地
使用ssh-key协议
git clone [email protected]:anycing/teach_git.git使用https协议
git clone https://gitee.com/anycing/teach_git.git更新本地仓库代码(与远程仓库代码保持一致)
git pull origin "master"
# origin 为远程仓库对应本地仓库的别名
# master 为主分支Last updated