向已存在的项目文件夹中添加git地址详解程序员

git init # 先初始化 
git remote add origin [email protected]: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 orgin master # 推送到远程仓库 
 

原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/1577.html

(0)
上一篇 2021年7月15日
下一篇 2021年7月15日

相关推荐

发表回复

登录后才能评论