标签:允许 loop copy setting 修改 切换 tor https 码云
github 提供了免费的远程仓库,私密仓库需要花钱,当然可以选择国内的码云
git init
git add -A
git commit -m ‘first commit‘
git remote add origin https://github.com/cnloop/test.git
git push -u origin master
点击 setting,点击 collaborators
填入组员的账号名称,添加
copy invite link,复制邀请链接并发送至对应组员,不手动发送组员也能够收到官方的邮件
组员点击链接,选择接受邀请就能够加入到项目团队中
项目进行了修改,组长将仓库拉取下来进行检查
pull,是拉取命令,其含义等于 fetct、merge 两个命令
# 抓取操作
git fetch origin master
# 抓取操作不改变本地文件,需要切换分支
git checkout origin/master
# 此时再去查看本地文件就已经发生了变化
# 合并操作
git checkout origin/master
git merge origin/master
标签:允许 loop copy setting 修改 切换 tor https 码云
原文地址:https://www.cnblogs.com/cnloop/p/9279085.html