git基本使用
Posted mrqinjj
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了git基本使用相关的知识,希望对你有一定的参考价值。
一、首次提交
1、git init 初始化
2、git add REAME.md
3、git config --global user.name "xxx" 名字
4、git config --global user.email "[email protected]" 邮箱
5、git commit -m "备注这里随便写"
6、git remote add orgin https://github.com/xxxx/xxxx.git 项目地址
7、最后git push 或者 git push -u origin master
二、首次提交后、同一个项目以后就可以这样啦
1、先查看状态 git status
2、避免不必要的麻烦 再拉取 git pull
3、再git add . 代表全部的master
4、本次提交的备注 git commit -m "xxxx"
5、最后git push就好了
三、首次拉取
1、git config --global user.name "xxx" 名字
2、git config --global user.email"xxx" 邮箱
3、git clone https://github.com/xxxxx/xxx.git 项目地址啦
四、首次拉去后以后同一个项目
直接git pull
以上是关于git基本使用的主要内容,如果未能解决你的问题,请参考以下文章