建立本地仓库
git init
让本地仓库和远程仓库进行关联
git remote add origin git +库名
进行添加和提交操作
git commit
push到远程
git push
从远程仓库拉分支代码到本地
git clone +库名
在IDE中
上传git
VCS->Git->commit file ->push
建立本地仓库
git init
让本地仓库和远程仓库进行关联
git remote add origin git +库名
进行添加和提交操作
git commit
push到远程
git push
从远程仓库拉分支代码到本地
git clone +库名
在IDE中
上传git
VCS->Git->commit file ->push