【只谈干货】git入门

1. git下载安装

- windows

https://git-scm.com/downloads

- linux

$ sudo apt-get install git

2. git的基本使用

$ git init
初始化本地文件夹,此时文件夹中会多一个.git文件
在这里插入图片描述
$ git add .
请求将文件夹中所有文件全部加入stage暂存区,此时可以用git status查看当前仓库状态
【只谈干货】git入门_第1张图片
$ git commit -m “first commit”
确认提交上一步的操作,并记录本次提交的日志"first commit"
【只谈干货】git入门_第2张图片
$ git remote add origin https://github.com/yangsen228
连接远程github仓库, origin后面是在github上创建的repository的地址
$ git push -u origin master
将本地文件push到github上的master节点中,首次push时需要加-u,另外还需要输入username和password

注:
$ git push origin master
后续上传可以直接push,不用加-u
$ git pull --rebase origin master
如果在github上创建repository时选择了Initialize this repository with a README,需要先执行这个语句将README复制到本地

你可能感兴趣的:(git)