符合中小企业对网站设计、功能常规化式的企业展示型网站建设
本套餐主要针对企业品牌型网站、中高端设计、前端互动体验...
商城网站建设因基本功能的需求不同费用上面也有很大的差别...
手机微信网站开发、微信官网、微信商城网站...
这篇文章主要为大家展示了“Ubuntu中Git常用命令有哪些”,内容简而易懂,条理清晰,希望能够帮助大家解决疑惑,下面让小编带领大家一起研究并学习一下“Ubuntu中Git常用命令有哪些”这篇文章吧。
成都创新互联公司专注于企业成都营销网站建设、网站重做改版、武义网站定制设计、自适应品牌网站建设、H5网站设计、商城开发、集团公司官网建设、外贸网站制作、高端网站制作、响应式网页设计等建站业务,价格优惠性价比高,为武义等各大城市提供网站开发制作服务。
1、安装
基于Ubuntu
系统,git
安装命令如下:
## 安装最小依赖性的主要组件apt-get install git或## 安装包含所有sub-packagesapt-get install git-all
2、查看版本信息
root@ubuntu:/home/run# git --versiongit version 2.17.1
3、配置用户信息
## 配置用户名,例:rungit config --global user.name run## 配置邮箱,例:run@263.comgit config --global user.email run@263.com## 配置文本编辑器,例:vimgit config --global core.editor vim## 配置git着色git config --global color.ui auto## 查看某个配置信息,例:user.emailgit config user.email## 查看配置信息git config --list## 查看配置信息及所在文件git config --list --show-origin
例:
## 查看配置信息及所在文件root@ubuntu:/home/run/code/rockchip-bsp# git config --list --show-originfile:/root/.gitconfig user.email=run@263.comfile:/root/.gitconfig user.name=runfile:/root/.gitconfig color.ui=autofile:/root/.gitconfig core.editor=vimfile:.git/config core.repositoryformatversion=0file:.git/config core.filemode=truefile:.git/config core.bare=falsefile:.git/config core.logallrefupdates=truefile:.git/config submodule.active=.file:.git/config remote.origin.url=https://github.com/radxa/rockchip-bsp.gitfile:.git/config remote.origin.fetch=+refs/heads/*:refs/remotes/origin/*file:.git/config branch.master.remote=originfile:.git/config branch.master.merge=refs/heads/masterfile:.git/config submodule.build.url=https://github.com/radxa/build.gitfile:.git/config submodule.kernel.url=https://github.com/radxa/kernel.gitfile:.git/config submodule.rkbin.url=https://github.com/radxa/rkbin.gitfile:.git/config submodule.rootfs.url=https://github.com/radxa/rk-rootfs-build.gitfile:.git/config submodule.u-boot.url=https://github.com/radxa/u-boot.git## 查看配置文件root@ubuntu:/home/run/code/rockchip-bsp# cat ~/.gitconfig[user] email = run@263.com name = run[color] ui = auto[core] editor = vim
注:
1、git config -h
查看其他参数。
2、--global
对应的配置文件:~/.gitconfig
,只需要运行一次,针对当前用户。
3、本地仓库的git
配置文件:.git/config
。
4、如果针对某个git
仓库配置,可以省略--global
或者替换为--local
参数。
5、每次git
提交都会用到name
和email
等信息。
以上是“Ubuntu中Git常用命令有哪些”这篇文章的所有内容,感谢各位的阅读!相信大家都有了一定的了解,希望分享的内容对大家有所帮助,如果还想学习更多知识,欢迎关注创新互联行业资讯频道!