git使用
1.拉取自己的远程仓库
# git clone xxx 自己的仓库地址
# cd teacher
2.添加对老师仓库的别名映射
# git remote add origin2 xxx 老师的仓库地址
3.查看仓库别名映射
# git remote -v
4.交作业
拉取老师仓库的最新内容 # git pull origin2 master # git add --all # git commit -m "xxx" # git push origin master