1 本地安装git,idea配置git;
2 启动git bash;执行命令:
git config --global user.name "xxx" git config --global user.email "xxx"
3 已存在的文件夹或 Git 仓库
cd existing_folder git init git remote add origin git@xxx.git git add . git commit git push -u origin master
1 本地安装git,idea配置git;
2 启动git bash;执行命令:
git config --global user.name "xxx" git config --global user.email "xxx"
3 已存在的文件夹或 Git 仓库
cd existing_folder git init git remote add origin git@xxx.git git add . git commit git push -u origin master