博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
GIT
阅读量:5927 次
发布时间:2019-06-19

本文共 1393 字,大约阅读时间需要 4 分钟。

1.创建一个新的repository: 

先在github上创建并写好相关名字,描述。 
$cd ~/hello-world        //到hello-world目录 
$git init                     //初始化 
$git add .                   //把所有文件加入到索引(不想把所有文件加入,可以用gitignore或add 具体文件) 
$git commit               //提交到本地仓库,然后会填写更新日志( -m “更新日志”也可) 
$git remote add origin git@github.com: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 git@github.com:WadeLeng/hello-world.git 
假如本地已经存在了代码,而仓库里有更新,把更改的合并到本地的项目: 
$git fetch origin    //获取远程更新 
$git merge origin/master //把更新的内容合并到本地分支 
6.撤销 
$git reset 
7.删除 
$git rm  * // 不是用rm 
//------------------------------常见错误----------------------------------- 
1.$ git remote add origin git@github.com:WadeLeng/hello-world.git 
错误提示:fatal: remote origin already exists. 
解决办法:$ git remote rm origin 
然后在执行:$ git remote add origin git@github.com:WadeLeng/hello-world.git 就不会报错误了 
2. $ git push origin master 
错误提示:error:failed to push som refs to 
解决办法:$ git pull origin master //先把远程服务器github上面的文件拉先来,再push 上去。 

http://www.ibm.com/developerworks/cn/linux/l-git/

转载于:https://www.cnblogs.com/wangbo2008/p/3794391.html

你可能感兴趣的文章
python3 UnicodeEncodeError: 'ascii' 错误
查看>>
SON Web Token设计单点登录系统
查看>>
ios gb2312转utf-8
查看>>
oop1
查看>>
避免活跃性危险(第十章)
查看>>
快来加入阿里云大学【云学院】班级助理招募—机会稍纵即逝,错过遥遥无期!...
查看>>
基于spring boot 的ssm项目的简单配置
查看>>
一个不成功人士的“成功之道”
查看>>
对大数据知识架构的梳理
查看>>
HTTPS实现原理
查看>>
MTD/MT/MDD/MD以及LIB/DLL之间的一些联系和问题
查看>>
SCVMM 2012 R2运维管理九之:添加非信任的Hyper-v主机和群集
查看>>
源码lnmp
查看>>
Tomcat详解
查看>>
php如何读出xml的节点内容 两个例子
查看>>
mysql数据库的备份和二进制日志恢复
查看>>
UITabBarController的基本原理及使用(一)
查看>>
【leetcode】521. Longest Uncommon Subsequence I
查看>>
java总结
查看>>
关于异或的一些东西和应用
查看>>