命令行打开方式
- windows : window + r
- map : terminal.app
怎么判断git是否安装成功?
- git -- version
- git -v
- 只要能打印出git的版本号,证明git安装成功
如何配置git
- git config --global user.name "GitHub的用户名地址"
- git config --global user.email "GitHub的邮箱地址"
如何创建本地仓库
- 创建一个空文件夹
- 把文件变成git可以管理的仓库:git init
- 如何查看当前文件下有哪些子文件:ls 或 ls -a
- 把本地仓库在cmd中打开
- 左手按住shift,右手点击右键 -> 选择在此处打开命令行窗口
关于远程仓库
- 如何查看链接了哪些远程仓库
- git remote -v
- 链接远程仓库
- git remote add 通道名称 通道地址
- 远程通道的名称是自己起的,一般自己的远程通道默认四origin;
- 通道地址:从GitHub上赋值粘贴过来的
- 移除远程通道:git remote rm 通道名称
- git remote add 通道名称 通道地址
git工作流程
- 目的:把本地仓库的内容,推送到远程仓库
- git add . 代表把当前目录下,所有的文件都推送到远程仓库
- git commit -m "注释" 把工作区的内容推送到暂存区
- git push origin master 把暂存区的内容推送到历史区,即推送GitHub的远程仓库master分支上去
git克隆
- git clone
注意:通过git clone 之后的文件夹,不能直接进行提交,必须进入clone下来的文件夹,才能运行 git 工作流
- git add .
- git commit -m "注释"
- git push add origin master
网友评论