使用Git将本地代码仓库和Coding关联

step1:初始化本地仓库(如果还没有初始化)

step2:关联你的codingID和email

git config --global user.name "codingID" 
git config --global user.email"coding邮箱

step3:进入到目标仓库中

step4:找到自己的仓库地址并复制

step5:将下图命令中的 仓库地址 替换为你自己的仓库 URL,然后在终端中运行该命令。

git remote add origin 仓库地址

step6:使用 git remote -v 命令来查看当前配置的远程仓库。

git remote -v

输出示例:确保 origin 的 URL 是你的 Coding 仓库的正确 URL。

origin  https://git.dev.tencent.com/yourusername/your-repo.git (fetch)
origin  https://git.dev.tencent.com/yourusername/your-repo.git (push)

猜你喜欢

转载自blog.csdn.net/M249_0428/article/details/142564101