提交代码到GitHub

github网址
https://github.com/

引用一下前辈的表述 http://blog.csdn.net/hao1056531028/article/details/7767567
提交更新时
执行git commit后会自动弹出一个txt文件。
如:

# Please enter the commit message for your changes. Lines starting
# with '#' will be ignored, and an empty message aborts the commit.
# On branch master
# Changes to be committed:
#   (use "git reset HEAD <file>..." to unstage)
#
#	modified:   net/zcmusicbox/health/taskmybreak/TakeMyBreakFramePainter.java
#	new file:   net/zcmusicbox/health/taskmybreak/eyes_protect.jpg
#	new file:   net/zcmusicbox/health/taskmybreak/mountain.jpg
#	new file:   net/zcmusicbox/health/taskmybreak/path.jpg
#	new file:   net/zcmusicbox/health/taskmybreak/river.jpg
#	modified:   net/zcmusicbox/test/util/http/HttpVisiter.java
#	new file:   net/zcmusicbox/test/util/linkedList/Chain.java
#	new file:   net/zcmusicbox/test/util/linkedList/LinkedList.java
#	new file:   net/zcmusicbox/test/util/stack/ArrayStack.java
#	new file:   net/zcmusicbox/test/util/stack/Stack.java
#	modified:   net/zcmusicbox/util/regex/Judger.java
#

只需要将要执行的那一行的#符号去掉,然后保存即可。
最后执行git push origin master命令提交
引用

1.创建一个新的repository:
先在github上创建并写好相关名字,描述。
$cd ~/hello-world        //到hello-world目录
$git init                     //初始化
$git add .                   //把所有文件加入到索引(不想把所有文件加入,可以用gitignore或add 具体文件)
$git commit               //提交到本地仓库,然后会填写更新日志( -m “更新日志”也可)
$git remote add origin [email protected]:WadeLeng/hello-world.git        //增加到remote
$git push origin master    //push到github上
2.更新项目(新加了文件):
$cd ~/hello-world
$git add .                  //这样可以自动判断新加了哪些文件,或者手动加入文件名字
$git commit              //提交到本地仓库
$git push origin master    //不是新创建的,不用再add 到remote上了
3.更新项目(没新加文件,只有删除或者修改文件):
$cd ~/hello-world
$git commit -a          //记录删除或修改了哪些文件
$git push origin master  //提交到github
4.忽略一些文件,比如*.o等:
$cd ~/hello-world
$vim .gitignore     //把文件类型加入到.gitignore中,保存
然后就可以git add . 能自动过滤这种文件
5.clone代码到本地:
$git clone [email protected]:WadeLeng/hello-world.git
假如本地已经存在了代码,而仓库里有更新,把更改的合并到本地的项目:
$git fetch origin    //获取远程更新
$git merge origin/master //把更新的内容合并到本地分支
6.撤销
$git reset
7.删除
$git rm  * // 不是用rm
//------------------------------常见错误-----------------------------------
1.$ git remote add origin [email protected]:WadeLeng/hello-world.git
错误提示:fatal: remote origin already exists.
解决办法:$ git remote rm origin
然后在执行:$ git remote add origin [email protected]:WadeLeng/hello-world.git 就不会报错误了
2. $ git push origin master
错误提示:error:failed to push som refs to
解决办法:$ git pull origin master //先把远程服务器github上面的文件拉先来,再push 上去。


本人遇到的还有一个错误就是,工程传进github 了可是里头缺少文件,
解决方法 $git add .    (注意一点  。  )表示添加所有文件,


如果出现无法提交的情况
如:
引用

error: failed to push some refs to ...

试试以下方法来强制提交。
http://www.cnblogs.com/tjuyyl/archive/2011/08/21/2147695.html
git push https://github.com/account/repositeName.git +master

猜你喜欢

转载自musicbox95351.iteye.com/blog/1815322