将项目放入到私有git仓库
命令行指令
Git 全局设置
git config --global user.name "明月" --你的名字 git config --global user.email "[email protected]" --你的邮箱
创建新版本库
git clone http://xxx.123123.com/app2.0/money-client-app.git --你的git仓库地址 cd money-client-app touch README.md git add README.md git commit -m "add README" git push -u origin master
已存在的文件夹
cd existing_folder git init git remote add origin http://xxx.123123.com/app2.0/money-client-app.git git add . git commit -m "Initial commit" git push -u origin master
已存在的 Git 版本库
cd existing_repo git remote add origin http://xxx.123123.com/app2.0/money-client-app.git git push -u origin --all git push -u origin --tags
相关推荐
LynnOhYeah 2020-07-18
formula 2020-11-12
huhongfei 2020-11-05
乾坤一碼農 2020-10-27
liumengyanysu 2020-10-22
E哥的aws认证攻略 2020-10-15
tianyafengxin 2020-10-08
guying 2020-10-05
好脑筋不如烂笔头 2020-09-17
nebulali 2020-09-11
佛系程序员J 2020-09-15
fenggit 2020-09-15
JustHaveTry 2020-09-11
兄dei努力赚钱吧 2020-09-06
IngeniousIT 2020-08-25