赞
踩
① 先测试是否连接成功:File — Setting — Version Control(Gitee) — Test判断是否连接成功;
② 提交(托管)项目:VCS — Import into Version Control — Share Project on Gitee(内容不变) — Share — (内容不变)OK
① 先测试是否连接成功;
② 拉取项目:VCS — Checkout fromVersion Control Git — URL:copy过来、Directory:在本地存放项目的位置新建一个空文件夹用于存放拉取下来的分开的项目(因为拉取下来的项目各部分是分开的,不是一整个) — Clone
① 先测试是否连接成功;
② Commit:VCS — Commit(/Git — Commit File…):弹出框中左侧 Commit Message 必填;
Push:VCS — Git — Push;
2.2.2 :如下图,①是要填写本地仓库名称,②是要填写远程仓库名称,③是确定分配或者创建(注:private指示创建仓库是否私有,分配完成后IDEA左下角会出现成功提示框)。成功后,一个远程仓库就创建好了。
下图中:① 输入gitee中对应的地址; ② 先在本地新建一个空文件夹用于存放拉取的项目(因为拉取下来的项目各部分是分开的,不是一整个)。
【注1:对于第一次从远程仓库拉取过来并在IDEA中创建的项目,最好还是先不要做任何修改,先推送一遍,因为IDEA会为项目创建配置文件.idea和项目名.iml。】
【注2:对于文件的修改,建议定期commit,就像定期保存一下一样,因为如果需要回退,可以很方便的根据commit的标识号进行回退】
右键点击文件或文件夹,执行下面步骤即可:
然后该填的都填上,对本地提交的描述必填,不然会报错,git命令里也是如此。
选择Commit and Push(或只是Commit也行,可以好几次Commit之后一下子Push):
然后:
点击Push之后,刷新远程代码仓库,可以看到内容有更新。
点击VCS,可以看到有相应的按钮可以执行commit、push操作,之后的界面与方法1相同
可以好几次Commit之后,点击执行Push,将其一起推送到远程代码仓库。
当我们选择VCS ==》 Import into Version Control ==》Share Project on Gitee提交代码时:
- <span style="background-color:#ffffff"><span style="color:rgba(0, 0, 0, 0.75)"><span style="color:#000000"><span style="background-color:#282a36"><code>Can’t finish GitHub sharing process
- Successfully created project ‘GitHubDemo’ on GitHub, but initial
- commit failed:* Please tell me who you are.Run git config –global
- user.email “you@example.com” git config –global user.name “Your
- Name” to set your account’s default identity. Omit –global to set
- the identity only in this repository. fatal: empty ident name (for )
- not allowed during executing git -c core.quotepath=false commit -m
- “Initial commit xxx” –
- </code></span></span></span></span>
是由于初次配置的环境,git没有配置好相应的一些必须的信息,需要一个名称才能提交到 gitte上面,解决办法是:在安装 Git的目录下找到 git-bash 这个可执行文件,设置邮箱地址、用户名。即找到git安装目录下的 git-bash 运行后输入下面两行代码即可:
- <span style="background-color:#ffffff"><span style="color:rgba(0, 0, 0, 0.75)"><span style="color:#000000"><span style="background-color:#282a36"><code> git config --global user.email "you@example.com"
- git config --global user.name "Your Name"
- </code></span></span></span></span>
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。