Git安装和使用
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Git安装和使用相关的知识,希望对你有一定的参考价值。
一、Git下载和安装
https://desktop.github.com/
二.liunx 下载安装Git环境
yum -y install git
检测git版本
git --version
git version 1.7.1
三、github注册(https://github.com/)
四、新建项目
五、 Linux环境下检出项目
1、复制项目github地址
2、在liunx服务器上检出项目
#cd到要检出的目录 cd /var/wwwroot/defalut #下载项目文件到目录 git clone https://github.com/Yifeng-Bin/jinming.git
六、liunx 环境下第一次提交项目到本地
vim w.log
#查看状态
git status
#所有修改过的工作文件提交暂存区
git add w.log
#再次查看状态
git status
#提交文件
git commit
发送到git服务器(不过这个在liunx里不一定会成功,很有可能报错,因为没有配置ssh-key)
git push
git命令
#配置使用git仓库的人员姓名 git config --global user.name "Your Name Comes Here" #配置使用git仓库的人员email git config --global user.email [email protected] #配置到缓存 默认15分钟 git config --global credential.helper cache #修改缓存时间 git config --global credential.helper ‘cache --timeout=3600‘ git config --global color.ui true git config --global alias.co checkout git config --global alias.ci commit git config --global alias.st status git config --global alias.br branch git config --global core.editor "mate -w" # 设置Editor使用textmate git config -1 #列举所有配置 #用户的git配置文件~/.gitconfig
git pull # 抓取远程仓库所有分支更新并合并到本地
以上是关于Git安装和使用的主要内容,如果未能解决你的问题,请参考以下文章
VSCode自定义代码片段15——git命令操作一个完整流程