Git是什么##
Git is a free and open source distributed version control system designed to handle everything from small to very large projects with speed and efficiency.
配置Git##
-
查看git版本
- 设定用户和邮箱
git config --global user.name "<Your Name>"
git config --global user.email "<youremail@example.com>"
Repository##
1.git init
新建文件夹mkdir hello-world
,进入到hello-world文件夹,使用命令行:
git init
2.新增(add)和提交(commit)
在hello-world文件夹新建readme.txt
touch readme.txt
,查看repo状态git status
用命令
git add
告诉Git,把文件添加到仓库:
git add readme.txt
用命令git commit告诉Git,把文件提交到仓库:
git commit -m "add a readme file"
在readme.txt中添加文字后,用git diff
查看自上次commit后之间的变化。
提交新修改,git commit -m "<your commit message>"
github##
上面介绍的只是在本地建立repository,要想分享给别人或者团队合作,我们得把它提交到远程仓库。
1.新建远程仓库
2.远程连接(会提示github账号和密码)
git remote add origin https://github.com/leechpee/hello-world.git
git push -u origin master
我们就能在自己的github上看到如下结果: