
Git学习
令狐傻笑
图像算法工程师,主要研究方向为图像分类,目标检测
展开
-
github同步fork仓库与原作者仓库
github同步fork仓库与原作者仓库1. 查看远程仓库$ git remote -v# List the current remotesorigin https://github.com/user/repo.git (fetch)origin https://github.com/user/repo.git (push)2. 添加远程上游仓库$ git remote add upstream https://github.com/otheruser/repo.git# Set a原创 2020-10-15 19:15:06 · 426 阅读 · 0 评论 -
Git学习总结
1. 安装gitsudo apt-get install git2. 配置git用户名和邮箱git config --global user.name "user_name"git config --global user.email "user_name@server.com"3. 创建版本库mkdir "folder_name"cd "folder_name"g...原创 2019-10-24 08:25:06 · 159 阅读 · 0 评论