git使用习惯

Posted zhongzh

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了git使用习惯相关的知识,希望对你有一定的参考价值。

1.每早一更新,提交前更新

git pull -u origin master: master(master为分支名称)


2.每晚一提交:

git add . (注:别忘记后面的.此操作是把文件夹下面的文件都添加进来)

git commit -m "提交信息"(注:“提交信息”里面换成你需要,如“first commit” )

git push -u origin master(注:此操作目的是把本地仓库push到github上面,

此步骤 需要你输入帐号和密码)


3.比较代码:

git remote -v (查看远程代码)

git fetch origin master :temp (创建temp分支)

git merge temp(合并分支代码)

git branch -d temp(删除分支)

 

4.检出(下载)代码

git clone <版本库的网址> <本地目录名>


参考资料:

http://www.cnblogs.com/cxk1995/p/5800196.html

http://www.cnblogs.com/ycwtojava001/p/6816203.html

http://blog.csdn.net/liang0000zai/article/details/50724632

以上是关于git使用习惯的主要内容,如果未能解决你的问题,请参考以下文章

1. Git初始

从零开始配置vim(31)——git 配置

git基本使用总结

Windows上git的搭建

git在vs2017中的使用

Git详解与gitlab使用