向已存在的文件夹添加git地址

1
2
3
4
5
6
7
git init # 先初始化
git remote add origin git@git.dev.tencent.com:xxx/xxx.git #添加远程仓库
git add *  # 文件加入版本控制
git commit -m 'init' # 提交
git branch --set-upstream-to=origin/master  #关键步骤,If you wish to set tracking information for this branch you can do so with:
git pull --allow-unrelated-histories # 关键步骤,
git push origin master # 推送到远程仓库
坚持原创技术分享,您的支持将鼓励我继续创作!