如果是还未加入到 Git 管理的项目,在文件夹找到该项目,进去。然后右键 Git Bash Here, 对着命令敲就完事了:
git init --- 初始化Git
git add . --- 将项目所有文件都交给Git 管理
git commit -m "first commit" --- 提交,并且写上备注
git remote add origin https://github.com/xxx/xxx.git ---- 关联远程仓库
git config --global user.name "username"
git config --global user.email "email"
git config --global user.password "password"
git push -u origin master ---- 把Git 库推送到远端
如果想更改远程仓库地址
git remote set-url origin http://Jepic:token@gitlab.jianglog.com/xx/java_demo.git
结束!!