1.修改用户信息
git config --global user.name "John Doe"
git config --global user.email johndoe@example.com
查看修改:$ git config --global core.editor emacs
一、把现有项目上传到github上
首先在github上创建一个repositories,然后执行命令:
echo "# flink-streamingkmeans" >> README.md
git init //将Test文件夹全部内容添加到git
git add . //把工作时的所有变化提交到暂存区
git commit -m "first commit"
git remote add origin xxx.git
git push -u origin master
二、从github上clone项目
cd 'xx路径'
git clone xxx.git
三、已关联的本地项目提交github
git add . //把工作时的所有变化提交到暂存区
git commit -m '说明信息' //提交到本地仓库
git push //上传到github上
四、修改远程github地址
git remote set-url origin [url]
git init
这里可能出现错误
Reinitialized existing Git repository in xxx/.git/
到对应项目先删除.git文件夹
sudo rm -r .git/
git init
git remote add origin xxx.git
重新绑定远程库就可以了
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。